feat: add svelteserver to LSP server registry

This commit is contained in:
2026-05-07 21:19:46 -04:00
parent 99ce79ac88
commit 9e5a0677c8

View File

@@ -59,6 +59,20 @@ export const servers: ServerConfig[] = [
rootMarkers: ["pnpm-workspace.yaml", "tsconfig.json", "package.json"], rootMarkers: ["pnpm-workspace.yaml", "tsconfig.json", "package.json"],
languageId: "typescript", languageId: "typescript",
}, },
{
id: "svelteserver",
match: ["svelte"],
command: "svelteserver",
args: ["--stdio"],
rootMarkers: [
"svelte.config.js",
"svelte.config.ts",
"svelte.config.cjs",
"svelte.config.mjs",
"package.json",
],
languageId: "svelte",
},
{ {
id: "pyright", id: "pyright",
match: ["py"], match: ["py"],