Stats
Actions
Tags
From tsgo
Tsgo LSP server provides code intelligence for JavaScript and TypeScript (including JSX/TSX) — diagnostics, go-to-definition, find references, hover info, symbols for .js/.ts/.jsx/.tsx files.
This LSP server requires npxto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"tsgo": {
"command": "npx",
"extensionToLanguage": {
".js": "javascript",
".ts": "typescript",
".cjs": "javascript",
".cts": "typescript",
".jsx": "javascriptreact",
".mjs": "javascript",
".mts": "typescript",
".tsx": "typescriptreact"
},
"args": [
"tsgo",
"--lsp",
"-stdio"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
npxstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
npx claudepluginhub trevor-scheer/graphql-analyzer --plugin tsgo