We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108f78f commit 8aadcb6Copy full SHA for 8aadcb6
extensions/typescript-language-features/src/tsServer/spawner.ts
@@ -245,7 +245,7 @@ export class TypeScriptServerSpawner {
245
const isUsingBundledTypeScriptVersion = currentVersion.path === this._versionProvider.defaultVersion.path;
246
for (const plugin of pluginManager.plugins) {
247
if (isUsingBundledTypeScriptVersion || plugin.enableForWorkspaceTypeScriptVersions) {
248
- pluginPaths.push(isWeb() ? plugin.uri.toString() : plugin.uri.path);
+ pluginPaths.push(isWeb() ? plugin.uri.toString() : plugin.uri.fsPath);
249
}
250
251
0 commit comments