From 8f24fa941152d820b74404f47ba995171694be98 Mon Sep 17 00:00:00 2001 From: Sysix <3897725+Sysix@users.noreply.github.com> Date: Fri, 9 Jan 2026 17:41:31 +0000 Subject: [PATCH] docs(vscode): remove mention of a built-in server (#17836) --- editors/vscode/README.md | 20 ++++++++++---------- editors/vscode/package.json | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/editors/vscode/README.md b/editors/vscode/README.md index 77cc461e437e0..b3cbd38f503a9 100644 --- a/editors/vscode/README.md +++ b/editors/vscode/README.md @@ -48,16 +48,16 @@ To enable it, use a VSCode `settings.json` like: Following configurations are supported via `settings.json` and affect the window editor: -| Key | Default Value | Possible Values | Description | -| ------------------- | ------------- | -------------------------------- | ------------------------------------------------------------------------------------------------ | -| `oxc.enable` | `true` | `true` \| `false` | Enable oxc language server | -| `oxc.path.node` | - | `` | Path to a Node.js binary. Will be added to the language server `PATH` environment. | -| `oxc.path.oxfmt` | - | `` | Path to an Oxc formatter binary. Will be used by the language server instead of the bundled one. | -| `oxc.path.oxlint` | - | `` | Path to an Oxc linter binary. Will be used by the language server instead of the bundled one. | -| `oxc.path.tsgolint` | - | `` | Path to an Oxc tsgolint binary. Will be used by the language server instead of the bundled one. | -| `oxc.trace.server` | `off` | `off` \| `messages` \| `verbose` | Traces the communication between VS Code and the language server. | -| Deprecated | | | | -| `oxc.path.server` | - | `` | Path to Oxc language server binary. Mostly for testing the language server. | +| Key | Default Value | Possible Values | Description | +| ------------------- | ------------- | -------------------------------- | --------------------------------------------------------------------------------------- | +| `oxc.enable` | `true` | `true` \| `false` | Enable oxc language server | +| `oxc.path.node` | - | `` | Path to a Node.js binary. Will be added to the `oxfmt` and `oxlint` `PATH` environment. | +| `oxc.path.oxfmt` | - | `` | Path to an Oxc formatter binary. Default: auto detection in `node_modules`. | +| `oxc.path.oxlint` | - | `` | Path to an Oxc linter binary. Default: auto detection in `node_modules`. | +| `oxc.path.tsgolint` | - | `` | Path to an Oxc tsgolint binary. Default: auto detection from `oxlint`. | +| `oxc.trace.server` | `off` | `off` \| `messages` \| `verbose` | Traces the communication between VS Code and the language server. | +| Deprecated | | | | +| `oxc.path.server` | - | `` | Path to Oxc language server binary. Mostly for testing the language server. | ### Workspace Configuration diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 10021f77e36d7..543f3188afd66 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -239,22 +239,22 @@ "oxc.path.oxlint": { "type": "string", "scope": "window", - "markdownDescription": "Path to an Oxc linter binary. Will be used by the language server instead of the bundled one." + "markdownDescription": "Path to an Oxc linter binary. Default: auto detection in `node_modules`." }, "oxc.path.oxfmt": { "type": "string", "scope": "window", - "markdownDescription": "Path to an Oxc formatter binary. Will be used by the language server instead of the bundled one." + "markdownDescription": "Path to an Oxc formatter binary. Default: auto detection in `node_modules`." }, "oxc.path.tsgolint": { "type": "string", "scope": "window", - "markdownDescription": "Path to an Oxc tsgolint binary. Will be used by the language server instead of the bundled one." + "markdownDescription": "Path to an Oxc tsgolint binary. Default: auto detection from `oxlint`." }, "oxc.path.node": { "type": "string", "scope": "window", - "markdownDescription": "Path to a Node.js binary. Will be added to the language server `PATH` environment." + "markdownDescription": "Path to a Node.js binary. Will be added to the `oxfmt` and `oxlint` `PATH` environment." } } },