-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from engines-dev/main
Specify `--prefix` for `npm install` command for `typescript` and `typescript-language-server`
- Loading branch information
Showing
1 changed file
with
15 additions
and
14 deletions.
There are no files selected for viewing
29 changes: 15 additions & 14 deletions
29
src/multilspy/language_servers/typescript_language_server/runtime_dependencies.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"_description": "Used to download the runtime dependencies for running typescript-language-server. Obtained from https://github.com/typescript-language-server/typescript-language-server/releases", | ||
"runtimeDependencies": [ | ||
{ | ||
"id": "typescript", | ||
"description": "typescript package for Linux, OSX, and Windows. Both x64 and arm64 are supported.", | ||
"command": "npm install [email protected]" | ||
}, | ||
{ | ||
"id": "typescript-language-server", | ||
"description": "typescript-language-server package for Linux, OSX, and Windows. Both x64 and arm64 are supported.", | ||
"command": "npm install [email protected]" | ||
} | ||
] | ||
} | ||
"_description": "Used to download the runtime dependencies for running typescript-language-server. Obtained from https://github.com/typescript-language-server/typescript-language-server/releases", | ||
"runtimeDependencies": [ | ||
{ | ||
"id": "typescript", | ||
"description": "typescript package for Linux, OSX, and Windows. Both x64 and arm64 are supported.", | ||
"command": "npm install --prefix ./ [email protected]" | ||
}, | ||
{ | ||
"id": "typescript-language-server", | ||
"description": "typescript-language-server package for Linux, OSX, and Windows. Both x64 and arm64 are supported.", | ||
"command": "npm install --prefix ./ [email protected]" | ||
} | ||
] | ||
} | ||
|