mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 08:37:37 +00:00
Use asAbsolutePath instead of hardcoding path
This commit is contained in:
parent
d43491b79d
commit
519ce367a3
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export function activate(
|
||||||
const versionProvider = new StaticVersionProvider(
|
const versionProvider = new StaticVersionProvider(
|
||||||
new TypeScriptVersion(
|
new TypeScriptVersion(
|
||||||
TypeScriptVersionSource.Bundled,
|
TypeScriptVersionSource.Bundled,
|
||||||
'/builtin-extension/typescript-language-features/dist/browser/typescript-web/tsserver.web.js',
|
context.asAbsolutePath('dist/browser/typescript-web/tsserver.web.js'),
|
||||||
API.v400));
|
API.v400));
|
||||||
|
|
||||||
const lazyClientHost = createLazyClientHost(context, false, {
|
const lazyClientHost = createLazyClientHost(context, false, {
|
||||||
|
|
Loading…
Reference in a new issue