Skip to content

Commit 8aadcb6

Browse files
authored
Make sure we pass along windows style paths to pluginProbeLocations (microsoft#142420)
1 parent 108f78f commit 8aadcb6

File tree

1 file changed

+1
-1
lines changed
  • extensions/typescript-language-features/src/tsServer

1 file changed

+1
-1
lines changed

extensions/typescript-language-features/src/tsServer/spawner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export class TypeScriptServerSpawner {
245245
const isUsingBundledTypeScriptVersion = currentVersion.path === this._versionProvider.defaultVersion.path;
246246
for (const plugin of pluginManager.plugins) {
247247
if (isUsingBundledTypeScriptVersion || plugin.enableForWorkspaceTypeScriptVersions) {
248-
pluginPaths.push(isWeb() ? plugin.uri.toString() : plugin.uri.path);
248+
pluginPaths.push(isWeb() ? plugin.uri.toString() : plugin.uri.fsPath);
249249
}
250250
}
251251
}

0 commit comments

Comments
 (0)