feat: add svelteserver to LSP server registry
This commit is contained in:
14
server.ts
14
server.ts
@@ -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"],
|
||||||
|
|||||||
Reference in New Issue
Block a user