summaryrefslogtreecommitdiff
path: root/cli/lsp/repl.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-12-22 02:04:02 +0100
committerGitHub <noreply@github.com>2023-12-22 02:04:02 +0100
commitcdbf902499dc62a4fb9f8cbf2a47a7b446623929 (patch)
treeacded191f368894e02c024f39946b1e7cb0972a4 /cli/lsp/repl.rs
parentf86456fc26d1c02f6c511125037efed576f87458 (diff)
feat(lsp): allow to connect V8 inspector (#21482)
This commit adds a way to connect to the TS compiler host that is run as part of the "deno lsp" subcommand. This can be done by specifying "DENO_LSP_INSPECTOR" variable. --------- Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
Diffstat (limited to 'cli/lsp/repl.rs')
-rw-r--r--cli/lsp/repl.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/lsp/repl.rs b/cli/lsp/repl.rs
index 04905e3bd..297764fcf 100644
--- a/cli/lsp/repl.rs
+++ b/cli/lsp/repl.rs
@@ -300,6 +300,7 @@ pub fn get_repl_workspace_settings() -> WorkspaceSettings {
import_map: None,
code_lens: Default::default(),
internal_debug: false,
+ internal_inspect: Default::default(),
log_file: false,
lint: false,
document_preload_limit: 0, // don't pre-load any modules as it's expensive and not useful for the repl