-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
include lsp_utils settings in LSP (#2395)
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
// Specifies the type and priority of the Node.js installation that should be used for Node.js-based servers. | ||
// The allowed values are: | ||
// - 'system' - a Node.js runtime found on the PATH | ||
// - 'local' - a Node.js runtime managed by LSP that doesn't affect the system | ||
// The order in which the values are specified determines which one is tried first, | ||
// with the later one being used as a fallback. | ||
// You can also specify just a single value to disable the fallback. | ||
"nodejs_runtime": ["system", "local"], | ||
// Uses Node.js runtime from the Electron package rather than the official distribution. This has the benefit of | ||
// lower memory usage due to it having the pointer compression (https://v8.dev/blog/pointer-compression) enabled. | ||
// Only relevant when using `local` variant of `nodejs_runtime`. | ||
"local_use_electron": false, | ||
} |
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