提交 669b5ecb 编写于 作者: M Matt Bierner

Gate pluginProbeLocations to only global ts installs

上级 3fac6054
......@@ -573,7 +573,9 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
const plugins = this.getContributedTypeScriptServerPlugins();
if (plugins.length) {
args.push('--globalPlugins', plugins.map(x => x.name).join(','));
args.push('--pluginProbeLocations', plugins.map(x => x.path).join(','));
if (modulePath === this.globalTypescriptPath) {
args.push('--pluginProbeLocations', plugins.map(x => x.path).join(','));
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册