Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: "deno.trace.server" setting #1189

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const ENABLEMENT_FLAG = "deno:lspReady";
export const EXTENSION_ID = "denoland.vscode-deno";
export const EXTENSION_NS = "deno";
export const EXTENSION_TS_PLUGIN = "typescript-deno-plugin";
export const LANGUAGE_CLIENT_ID = "deno-language-server";
export const LANGUAGE_CLIENT_ID = "deno";
export const LANGUAGE_CLIENT_NAME = "Deno Language Server";
export const TS_LANGUAGE_FEATURES_EXTENSION =
"vscode.typescript-language-features";
Expand Down
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,12 @@
"markdownDescription": "If enabled, when new hosts/origins are encountered that support import suggestions, you will be prompted to enable or disable it. Defaults to `true`.",
"scope": "resource"
},
"deno.trace.server": {
"enum": ["messages", "off", "verbose"],
"default": "off",
"markdownDescription": "Traces the communication between VS Code and the Deno Language Server.",
"scope": "window"
},
"deno.suggest.imports.hosts": {
"type": "object",
"default": {
Expand Down
Loading