From angular
Angular Language Server provides code intelligence for Angular projects — diagnostics, go-to-definition, find references, hovers for TypeScript (.ts) and HTML (.html) files.
npx claudepluginhub thebushidocollective/han --plugin angularThis LSP server requires ${CLAUDE_PLUGIN_ROOT}/scripts/angular-lsp-entrypoint.shto be installed on your system. Make sure it's available in your PATH before enabling.
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"angular": {
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/angular-lsp-entrypoint.sh",
"extensionToLanguage": {
".ts": "typescript",
".html": "html"
},
"args": [
"--stdio",
"--tsProbeLocations",
"node_modules",
"--ngProbeLocations",
"node_modules"
]
}
}
}${CLAUDE_PLUGIN_ROOT}/scripts/angular-lsp-entrypoint.shstdio