diff --git a/src/server/project.ts b/src/server/project.ts index 9f2beb13a83..17076a920fa 100644 --- a/src/server/project.ts +++ b/src/server/project.ts @@ -362,9 +362,9 @@ function compilerOptionsChanged(opt1: CompilerOptions, opt2: CompilerOptions): b } function unresolvedImportsChanged(imports1: SortedReadonlyArray | undefined, imports2: SortedReadonlyArray | undefined): boolean { - if (imports1 === imports2) { - return false; - } + if (imports1 === imports2) return false; + // undefined and 0 length array are same + if (!imports1?.length === !imports2?.length) return false; return !arrayIsEqualTo(imports1, imports2); } const disabledTypeAcquisition: TypeAcquisition = {}; @@ -1518,10 +1518,14 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo this.typingsCache = { compilerOptions: this.getCompilationSettings(), typeAcquisition, - unresolvedImports: this.lastCachedUnresolvedImportsList, + unresolvedImports: this.lastCachedUnresolvedImportsList?.length ? this.lastCachedUnresolvedImportsList : undefined, }; // something has been changed, issue a request to update typings - this.projectService.typingsInstaller.enqueueInstallTypingsRequest(this, typeAcquisition, this.lastCachedUnresolvedImportsList); + this.projectService.typingsInstaller.enqueueInstallTypingsRequest( + this, + typeAcquisition, + this.typingsCache.unresolvedImports, + ); } } diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js b/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js index 5928dbcafd4..50de8df21ad 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js @@ -186,14 +186,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/node_modules/@angular/forms", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -235,7 +233,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -258,7 +255,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js index 3156d65bfe2..f4586769655 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js @@ -435,14 +435,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/node_modules/@angular/forms", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -484,7 +482,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -507,7 +504,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js index 542e67c272a..1476f5f592f 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js @@ -183,14 +183,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/node_modules/@angular/forms", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: ["@angular/core"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -237,7 +235,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -260,7 +257,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js b/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js index fc367f39f28..3fb521e8ac6 100644 --- a/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js +++ b/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js @@ -374,13 +374,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -420,7 +418,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -444,7 +441,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js index 461f59ae784..026ed3f2755 100644 --- a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js +++ b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js @@ -299,13 +299,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "e:/solution/myproject/src", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -345,7 +343,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -369,7 +366,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 46c9d088a9d..561f80a22cb 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 @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -190,7 +188,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 5e50061b43a..f36f6c4b48e 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 @@ -145,13 +145,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -191,7 +189,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -215,7 +212,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js b/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js index 4805fbd826e..8d08e03f0cf 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js +++ b/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js @@ -427,13 +427,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -473,7 +471,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -497,7 +494,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js b/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js index c35041d7c5a..d85cd8ff2fe 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js @@ -379,13 +379,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -424,7 +422,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -447,7 +444,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js index 5629ba21ed2..4cfd2f88efd 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js @@ -142,13 +142,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -218,7 +215,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js index ab41801119c..63c31d46b4e 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js @@ -122,13 +122,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -174,7 +172,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -198,7 +195,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -317,12 +313,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -368,7 +362,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -392,7 +385,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js index f0caa377af2..d0fece9572c 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js @@ -126,13 +126,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -178,7 +176,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -202,7 +199,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js index b168e904d9c..d693476d2ed 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js @@ -143,13 +143,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -195,7 +193,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js b/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js index 6d4a8eaba92..6452683ac0d 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js @@ -122,13 +122,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -167,7 +165,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -190,7 +187,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js b/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js index 47d526fe35e..44f97a94d02 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js @@ -119,13 +119,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -164,7 +162,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -187,7 +184,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -528,12 +524,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -564,7 +558,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -587,7 +580,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js b/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js index acc60055d64..7efaa6cd4cb 100644 --- a/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js +++ b/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js @@ -368,13 +368,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -415,7 +413,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -440,7 +437,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js index 2eed6f0e7d4..fe1d0f29ab2 100644 --- a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js +++ b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js @@ -290,13 +290,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/someuser/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -339,7 +337,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -360,7 +357,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js index 07fc4a74acf..5f534f922a1 100644 --- a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js +++ b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js @@ -413,13 +413,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/someuser/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -462,7 +460,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -483,7 +480,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js b/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js index 0d09647ae0c..d4aed44cd02 100644 --- a/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js +++ b/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js @@ -354,13 +354,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -400,7 +398,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -424,7 +421,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -578,12 +574,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -624,7 +618,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -649,7 +642,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js b/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js index 429f334a6f9..55df86e8108 100644 --- a/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js +++ b/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js @@ -270,13 +270,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -312,7 +310,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -332,7 +329,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js b/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js index 8025b018767..3d5b013a2d3 100644 --- a/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js +++ b/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js @@ -298,13 +298,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/workspace/projects", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -344,7 +342,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -368,7 +365,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js index 916c29cffa6..4ab931c588f 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js @@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -355,12 +351,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -391,7 +385,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -414,7 +407,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -519,12 +511,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -563,7 +553,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -586,7 +575,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -742,12 +730,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -786,7 +772,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -809,7 +794,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1544,12 +1528,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1580,7 +1562,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1603,7 +1584,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1846,12 +1826,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1882,7 +1860,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1905,7 +1882,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2009,12 +1985,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2053,7 +2027,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2076,7 +2049,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2230,12 +2202,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2274,7 +2244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2297,7 +2266,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3059,12 +3027,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3095,7 +3061,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3118,7 +3083,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3370,12 +3334,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3406,7 +3368,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3429,7 +3390,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3533,12 +3493,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3577,7 +3535,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3600,7 +3557,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3754,12 +3710,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3798,7 +3752,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3821,7 +3774,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4556,12 +4508,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4592,7 +4542,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4615,7 +4564,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4858,12 +4806,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4894,7 +4840,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4917,7 +4862,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5021,12 +4965,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5065,7 +5007,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5088,7 +5029,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5242,12 +5182,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5286,7 +5224,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5309,7 +5246,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js index 4c5518ca6d2..541fe0c39d4 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js @@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -359,12 +355,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -395,7 +389,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -418,7 +411,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -551,12 +543,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -595,7 +585,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -618,7 +607,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -780,12 +768,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -824,7 +810,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -847,7 +832,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1594,12 +1578,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1630,7 +1612,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1653,7 +1634,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1902,12 +1882,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/A", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1946,7 +1924,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1969,7 +1946,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2116,12 +2092,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2160,7 +2134,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2183,7 +2156,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2356,12 +2328,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2400,7 +2370,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2423,7 +2392,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3267,12 +3235,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3303,7 +3269,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3326,7 +3291,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3618,12 +3582,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3654,7 +3616,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3677,7 +3638,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3809,12 +3769,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3853,7 +3811,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3876,7 +3833,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4036,12 +3992,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4080,7 +4034,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4103,7 +4056,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4850,12 +4802,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4886,7 +4836,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4909,7 +4858,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5158,12 +5106,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/A", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5202,7 +5148,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5225,7 +5170,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5375,12 +5319,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5419,7 +5361,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5442,7 +5383,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5620,12 +5560,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5664,7 +5602,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5687,7 +5624,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js index f3c67290fd4..5ce6ee016be 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js @@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -355,12 +351,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -391,7 +385,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -414,7 +407,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -519,12 +511,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -563,7 +553,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -586,7 +575,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -742,12 +730,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -786,7 +772,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -809,7 +794,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js b/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js index 43b1d95ef8e..1c6401eb2a9 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js +++ b/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js @@ -134,13 +134,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -180,7 +178,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -204,7 +201,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js b/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js index d3b7034bb95..5570f9d96f5 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js @@ -250,13 +250,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -296,7 +294,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -320,7 +317,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -532,12 +528,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -569,7 +563,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -593,7 +586,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -746,12 +738,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -791,7 +781,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -815,7 +804,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js b/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js index 0219ae42cf2..14fc3703498 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -188,7 +186,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -210,7 +207,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js b/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js index cf9a4339215..e9bbd90fbd2 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js +++ b/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js @@ -418,7 +418,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } @@ -426,7 +425,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/myproject/node_modules; all files: ["/user/username/projects/myproject/node_modules/module3/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["module3"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -470,7 +468,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -493,7 +490,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js b/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js index 1118b19a8dd..fb625e72350 100644 --- a/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js @@ -162,13 +162,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -209,7 +207,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -234,7 +231,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js b/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js index b70826970df..465d2bf5a36 100644 --- a/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js +++ b/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js @@ -163,13 +163,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -210,7 +208,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -235,7 +232,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js b/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js index e80668d0270..0e2395ce347 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js @@ -228,13 +228,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -273,7 +271,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -296,7 +293,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js b/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js index 97497569086..7a7e77ce19f 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js @@ -244,14 +244,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -327,7 +324,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js b/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js index 78c579e97bf..0015330abc7 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js @@ -244,14 +244,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -327,7 +324,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -423,12 +419,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -464,7 +458,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -487,7 +480,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js b/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js index a6888e12c7a..46ae8864951 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js @@ -231,14 +231,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -280,7 +278,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -303,7 +300,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -396,13 +392,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -445,7 +439,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -468,7 +461,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js b/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js index 7ccbffb367b..6e97099ac5c 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js @@ -231,14 +231,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -280,7 +278,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -303,7 +300,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -396,13 +392,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -445,7 +439,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -468,7 +461,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectErrors/for-external-project.js b/tests/baselines/reference/tsserver/projectErrors/for-external-project.js index 46d6072d5d6..9f0265b25f9 100644 --- a/tests/baselines/reference/tsserver/projectErrors/for-external-project.js +++ b/tests/baselines/reference/tsserver/projectErrors/for-external-project.js @@ -130,13 +130,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -172,7 +170,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -192,7 +189,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js b/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js index 10ddbe3976a..85c691da972 100644 --- a/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js +++ b/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -190,7 +188,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 c8f7d3af5e6..af0909e50ed 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 @@ -143,13 +143,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -195,7 +193,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -342,12 +338,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -397,7 +391,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -421,7 +414,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -818,12 +810,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -865,7 +855,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -889,7 +878,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -934,12 +922,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -983,7 +969,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1007,7 +992,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js b/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js index 4cfa521a2de..b646aa07cda 100644 --- a/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js +++ b/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js @@ -305,13 +305,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/src", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -350,7 +348,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -373,7 +370,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 914375adce1..e8e9598412a 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 @@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -167,7 +165,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -187,7 +184,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js index 937cefe8321..79c7d20f9f8 100644 --- a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js +++ b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js @@ -161,13 +161,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["duck-types"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -226,7 +224,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -248,7 +245,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js index 36c877fe384..2f23f35541b 100644 --- a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js +++ b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js @@ -167,14 +167,12 @@ TI:: [hh:mm:ss:mss] Got install request ], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["blissfuljs"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["blissfuljs"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -225,7 +223,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -247,7 +244,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js index a03fa64fcc1..1b25d1a317e 100644 --- a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js +++ b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js @@ -174,13 +174,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["kendo-ui","office"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -266,7 +264,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -289,7 +286,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js b/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js index e2712530662..43df6015859 100644 --- a/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js +++ b/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js @@ -451,13 +451,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -497,7 +495,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -521,7 +518,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -741,12 +737,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -786,7 +780,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -810,7 +803,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js b/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js index acd5a855c21..9ef68dc60e1 100644 --- a/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js +++ b/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js @@ -324,13 +324,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -370,7 +368,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -394,7 +391,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js b/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js index 7327480fd33..d36656ff53e 100644 --- a/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js +++ b/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -365,12 +361,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -414,7 +408,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -434,7 +427,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 ee370fcb9e0..ed368b88fe5 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 @@ -205,13 +205,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -250,7 +248,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -273,7 +270,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js b/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js index bd7c9b5a931..ecfd2f61d43 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js +++ b/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js @@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -171,7 +169,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -195,7 +192,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js index 64e5061ba54..bc02fc7e88c 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js @@ -225,13 +225,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -271,7 +269,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -297,7 +294,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js index f6b1458f2e0..7455ca89b7d 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js @@ -280,13 +280,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -328,7 +326,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -354,7 +351,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js index 130e4de5526..c647f691b38 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js @@ -212,13 +212,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -258,7 +256,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -284,7 +281,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js index 622c0d7976b..4e4f7dcf9fc 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js @@ -267,13 +267,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -315,7 +313,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -341,7 +338,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js index fc5cdef2084..c3f396f7fed 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js @@ -152,13 +152,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -203,7 +201,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -224,7 +221,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js index 38230f04df1..0a0136ffed7 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js @@ -149,13 +149,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -199,7 +197,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js index bbd6e2c2eac..4551c67a849 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js @@ -166,13 +166,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -212,7 +210,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -236,7 +233,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -454,12 +450,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -490,7 +484,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -513,7 +506,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -729,12 +721,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -774,7 +764,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -798,7 +787,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js index 1654e01f23d..c5660f0cd34 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js @@ -166,13 +166,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -214,7 +212,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -240,7 +237,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js index 7ba4f8db7e4..5479310dc22 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js @@ -161,13 +161,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -208,7 +206,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -233,7 +230,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js index ffae6347b2a..14066813367 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js @@ -137,13 +137,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -183,7 +181,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -207,7 +204,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js b/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js index b10c7b21e24..b1b0a64b423 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js @@ -190,13 +190,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -237,7 +235,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -262,7 +259,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js b/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js index 2298c65961c..b84af2624b6 100644 --- a/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js +++ b/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js @@ -132,13 +132,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -178,7 +176,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -202,7 +199,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js b/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js index 85ac0ea7d95..dbfe3934930 100644 --- a/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js @@ -124,13 +124,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -170,7 +168,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -194,7 +191,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js b/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js index 78d34f5e188..af4a7bca491 100644 --- a/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js +++ b/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js @@ -160,13 +160,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -208,7 +206,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -234,7 +231,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js b/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js index 32ed70192ad..51dc4d9856d 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js @@ -128,13 +128,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -174,7 +172,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -198,7 +195,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -298,12 +294,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -343,7 +337,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -367,7 +360,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js index 33d8ece2d14..46a0af93701 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js @@ -177,13 +177,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -224,7 +222,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -249,7 +246,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js index 062c7774027..53ca24a3eb9 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js @@ -167,13 +167,11 @@ TI:: [hh:mm:ss:mss] Got install request ], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["hunter2","hunter3"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -224,7 +222,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js b/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js index 795f4502d78..d066b46f3f0 100644 --- a/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js +++ b/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js @@ -146,13 +146,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -192,7 +190,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -216,7 +213,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js index a6e0bb7f2ac..b71bb897c7a 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js +++ b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js @@ -565,7 +565,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } @@ -573,7 +572,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -615,7 +613,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -641,7 +638,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js index 681d29c7636..ab980eed13a 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js @@ -622,14 +622,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -663,7 +661,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json @@ -691,7 +688,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1211,14 +1207,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1260,7 +1254,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1286,7 +1279,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js index ef292c90e79..6abb4408283 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js @@ -292,7 +292,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } @@ -300,7 +299,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -342,7 +340,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -368,7 +365,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -917,14 +913,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -966,7 +960,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -992,7 +985,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js b/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js index fd5a50bb795..ff67c617d6e 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js +++ b/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js @@ -138,13 +138,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -180,7 +178,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -200,7 +197,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js index 605fc5598b2..117799707c8 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js +++ b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js @@ -880,14 +880,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -929,7 +927,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -955,7 +952,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js b/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js index 48c118e0812..3cbac6cb775 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js +++ b/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js @@ -197,7 +197,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -205,7 +204,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -271,7 +268,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js index 69063b924c0..1addec2d736 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js +++ b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js @@ -865,14 +865,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/users/user/projects/project1", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -914,7 +912,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -940,7 +937,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 dd192abf97c..1f2a29f8e18 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 @@ -174,7 +174,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -182,7 +181,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/bower_components; all files: ["/user/username/projects/project/bower_components/jquery/bower.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -380,7 +378,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -409,7 +406,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -498,14 +494,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/bower_components; all files: ["/user/username/projects/project/bower_components/jquery/bower.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -542,7 +536,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -569,7 +562,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js index 0d47258c726..122ef0645ac 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js @@ -196,14 +196,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -403,7 +401,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/tsconfig.json @@ -428,7 +425,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -512,13 +508,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -552,7 +546,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -575,7 +568,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js index a708f3e5b42..d4954eac4cc 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js @@ -173,14 +173,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/bower.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -383,7 +381,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -412,7 +409,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -501,13 +497,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/bower.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -545,7 +539,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -572,7 +565,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js index 7055151c01a..1f49e4c78cf 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js @@ -556,12 +556,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -589,7 +587,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -617,7 +614,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js index b500cda94ea..06b657abf39 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js @@ -212,13 +212,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -272,7 +269,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js index 38fa11bd62b..3cbc577609b 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js @@ -231,13 +231,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -267,7 +265,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -295,7 +292,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js index b38cb198eea..ae5bdf210df 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js @@ -216,7 +216,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -225,7 +224,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/jquery/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -469,7 +467,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -498,7 +495,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -594,7 +590,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -602,7 +597,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/jquery/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -640,7 +634,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -667,7 +660,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js b/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js index d8e9eb35ba9..96211b38ea7 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js @@ -184,14 +184,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -335,7 +333,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -363,7 +360,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -451,13 +447,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -496,7 +490,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -522,7 +515,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js index a92792f07d4..a205e12b3c2 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js @@ -142,13 +142,11 @@ TI:: [hh:mm:ss:mss] Got install request ], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -303,7 +301,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -328,7 +325,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js index cac56424035..0ee66c1ccc1 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js @@ -189,13 +189,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -239,7 +237,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -259,7 +256,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js index 7fe5747b49b..8a0ab3d056e 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js @@ -203,7 +203,6 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -211,7 +210,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib TI:: [hh:mm:ss:mss] Explicitly included types: ["lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] TI:: [hh:mm:ss:mss] Inferred 'react' typings due to presence of '.jsx' extension -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -394,7 +392,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -422,7 +419,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -519,14 +515,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] TI:: [hh:mm:ss:mss] Inferred 'react' typings due to presence of '.jsx' extension -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -566,7 +560,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -593,7 +586,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js index ce079830eb2..2e1e415200c 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -197,7 +195,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -220,7 +217,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js index 4d2e1258d99..9bc4189a584 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js @@ -238,7 +238,6 @@ TI:: [hh:mm:ss:mss] Got install request "lodash" ] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -246,7 +245,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Typing for lodash is in exclude list, will be ignored. TI:: [hh:mm:ss:mss] Finished typings discovery: { @@ -456,7 +454,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -491,7 +488,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -604,14 +600,12 @@ TI:: [hh:mm:ss:mss] Got install request "lodash" ] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Typing for lodash is in exclude list, will be ignored. TI:: [hh:mm:ss:mss] Finished typings discovery: { @@ -662,7 +656,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -696,7 +689,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js index 1bb3c38cecd..531f3255e0b 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js @@ -157,12 +157,10 @@ TI:: [hh:mm:ss:mss] Got install request "enable": true, "disableFilenameBasedTypeAcquisition": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -201,7 +199,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -224,7 +221,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js index f7cbf4a1526..231a1bc11e9 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js @@ -148,14 +148,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -302,7 +300,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -330,7 +327,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -418,13 +414,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -463,7 +457,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -489,7 +482,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js b/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js index c578c9fb8dd..79c715e4768 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js @@ -452,12 +452,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -489,7 +487,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -515,7 +512,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js index ba96aa59063..e78cb6fac6c 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js @@ -473,14 +473,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -512,7 +510,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -538,7 +535,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -673,14 +669,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -712,7 +706,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -736,7 +729,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js index 9bad7901a1c..3052f661910 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js @@ -451,14 +451,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -490,7 +488,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -516,7 +513,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js b/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js index d29dd1f743b..280d2c2320a 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js @@ -199,13 +199,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -271,7 +268,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js b/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js index b437ee97d46..b943664ff36 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js @@ -139,14 +139,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["co } }"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -218,7 +215,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -290,13 +286,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -385,7 +379,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -413,7 +406,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -500,13 +492,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -543,7 +533,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -569,7 +558,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js index 6e138bac171..30a7365fd23 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js @@ -205,14 +205,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -414,7 +412,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/tsconfig.json @@ -439,7 +436,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -524,13 +520,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -564,7 +558,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -587,7 +580,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -824,13 +816,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project2", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project2/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], diff --git a/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js b/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js index b5610ff8a74..8815374693a 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js @@ -184,14 +184,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -274,7 +271,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js index 3088d58c064..5da46c6b362 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js @@ -143,14 +143,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], diff --git a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js index a5041614b58..dd9243db7f6 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js @@ -163,14 +163,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -332,7 +329,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -420,13 +416,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -463,7 +457,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -489,7 +482,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js b/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js index 807213af79c..012d11d9d91 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js @@ -199,13 +199,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/san2", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -248,7 +246,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -275,7 +272,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } 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 413a63dcffb..d4fc55adf75 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 @@ -462,12 +462,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -499,7 +497,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -525,7 +522,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js b/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js index 31a1adecb3b..b2233a830f6 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js @@ -211,7 +211,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -220,7 +219,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["@zkat/cacache"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/@zkat/cacache/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["@zkat/cacache"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -464,7 +462,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/zkat__cacache/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -493,7 +490,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/zkat__cacache/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -589,7 +585,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -597,7 +592,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["@zkat/cacache"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/@zkat/cacache/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["@zkat/cacache"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -636,7 +630,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -663,7 +656,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -710,7 +702,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -718,7 +709,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["@zkat/cacache"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/@zkat/cacache/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["@zkat/cacache"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -757,7 +747,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -782,7 +771,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js b/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js index 080d0076085..5836e5e0aef 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js @@ -417,12 +417,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -454,7 +452,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -480,7 +477,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -795,107 +791,6 @@ Info seq [hh:mm:ss:mss] Files (3) /home/src/projects/project/app.js SVC-1-2 "// @ts-check\n\nconst bar = require(\"bar\");const net = require(\"net\");\nconst stream = require(\"s tream\");" Info seq [hh:mm:ss:mss] ----------------------------------------------- -TI:: [hh:mm:ss:mss] Got install request - { - "projectName": "/dev/null/inferredProject1*", - "fileNames": [ - "/home/src/tslibs/TS/Lib/lib.d.ts", - "/home/src/projects/project/app.js" - ], - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "unresolvedImports": [ - "bar", - "s tream" - ], - "projectRootPath": "/home/src/projects/project", - "kind": "discover" - } -TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar","s tream"] -TI:: [hh:mm:ss:mss] Finished typings discovery: - { - "cachedTypingPaths": [], - "newTypingNames": [ - "bar", - "s tream" - ], - "filesToWatch": [ - "/home/src/projects/project/bower_components", - "/home/src/projects/project/node_modules" - ] - } -TI:: [hh:mm:ss:mss] Sending response: - { - "kind": "action::watchTypingLocations", - "projectName": "/dev/null/inferredProject1*" - } -TI:: [hh:mm:ss:mss] Installing typings ["bar","s tream"] -TI:: [hh:mm:ss:mss] 'bar':: Entry for package 'bar' does not exist in local types registry - skipping... -TI:: [hh:mm:ss:mss] 's tream':: 's tream' is in missingTypingsSet - skipping... -TI:: [hh:mm:ss:mss] All typings are known to be missing or invalid - no need to install more typings -TI:: [hh:mm:ss:mss] Sending response: - { - "projectName": "/dev/null/inferredProject1*", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typings": [], - "unresolvedImports": [ - "bar", - "s tream" - ], - "kind": "action::set" - } -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "setTypings", - "body": { - "projectName": "/dev/null/inferredProject1*", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typings": [], - "unresolvedImports": [ - "bar", - "s tream" - ], - "kind": "action::set" - } - } After program update Projects:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js b/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js index 60b28324a7c..9bfb1a411a0 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js @@ -131,14 +131,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["; say ‘Hello from TypeScript!’ #"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -186,7 +184,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -210,7 +207,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js b/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js index bfd2eec07c8..d57053ae5c3 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js @@ -143,14 +143,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -284,7 +282,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -312,7 +309,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -400,13 +396,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -443,7 +437,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -469,7 +462,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js index e1df89a9bf4..4ae03d5fcdd 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js @@ -246,14 +246,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -467,12 +465,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -649,7 +645,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test1.csproj @@ -682,7 +677,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -780,7 +774,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test2.csproj @@ -809,7 +802,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -922,13 +914,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -975,7 +965,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1007,7 +996,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -1061,12 +1049,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -1105,7 +1091,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1133,7 +1118,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js index 6a4dac81fee..3453906f00f 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js @@ -243,7 +243,6 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -251,7 +250,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -467,7 +465,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -501,7 +498,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -619,14 +615,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -676,7 +670,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -709,7 +702,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js index d55b4316d69..fb19685924f 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js @@ -125,7 +125,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -283,7 +282,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -439,7 +437,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -497,7 +494,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -612,14 +608,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -775,7 +769,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -801,7 +794,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Skipping defunct request for: /user/username/projects/project/app/test2.csproj @@ -834,7 +826,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -922,7 +913,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -949,13 +939,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp","lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1115,7 +1103,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1141,7 +1128,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/app/test2.csproj @@ -1172,7 +1158,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js index 7895e938e72..cca21c98853 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js @@ -123,7 +123,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -279,7 +278,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -433,7 +431,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -551,7 +548,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -665,14 +661,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -814,7 +808,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -838,7 +831,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling request for: /user/username/projects/app/test2.csproj @@ -868,7 +860,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -954,7 +945,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -979,12 +969,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1096,7 +1084,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1120,7 +1107,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling request for: /user/username/projects/app/test3.csproj @@ -1150,7 +1136,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -1240,7 +1225,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -1266,13 +1250,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["cordova","lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1394,7 +1376,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1418,7 +1399,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test3.csproj @@ -1447,7 +1427,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js index cb600b44c9c..b94f85e440f 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js @@ -131,7 +131,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -287,7 +286,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -399,7 +397,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -516,14 +513,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -685,7 +680,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -713,7 +707,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling request for: /user/username/projects/app/test2.csproj @@ -747,7 +740,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -836,7 +828,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -861,12 +852,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -978,7 +967,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1002,7 +990,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test2.csproj @@ -1031,7 +1018,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js index d2e7ffd044f..602eb5417b8 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js @@ -131,7 +131,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -249,7 +248,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -366,14 +364,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -535,7 +531,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -563,7 +558,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test1.csproj @@ -596,7 +590,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -723,7 +716,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -862,7 +854,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -887,12 +878,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1032,7 +1021,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1056,7 +1044,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/app/test2.csproj @@ -1085,7 +1072,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } 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 682c421f060..067c91998b7 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 @@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "c:/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -171,7 +169,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -195,7 +192,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -355,13 +351,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "//vda1cs4850/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -399,7 +393,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -423,7 +416,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -581,13 +573,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "//vda1cs4850/c$/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -627,7 +617,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -651,7 +640,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -827,13 +815,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "c:/users/username/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -873,7 +859,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -897,7 +882,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1073,13 +1057,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "//vda1cs4850/c$/users/username/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1119,7 +1101,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1143,7 +1124,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } }