Skip to content

Commit

Permalink
feat: add lwc-language-server support
Browse files Browse the repository at this point in the history
  • Loading branch information
SirWizardLizard committed Jan 6, 2024
1 parent ce0e625 commit 6b264b2
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions lua/lspconfig/server_configurations/lwc_ls.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'lwc-language-server', '--stdio' }
filetypes = { 'javascript', 'html' },
root_dir = util.root_pattern 'sfdx-project.json',
init_options = {
embeddedLanguages = {
javascript = true,
},
},
},
docs = {
description = [[
https://github.com/forcedotcom/lightning-language-server/
Language server for Lightning Web Components.
For manual installation, utilize the official
[NPM package](https://www.npmjs.com/package/@salesforce/lwc-language-server).
Then, configure `cmd` to run the Node script at the unpacked location:
```lua
require'lspconfig'.lwc_ls.setup {
cmd = {
'node',
'/path/to/node_modules/@salesforce/lwc-language-server/bin/lwc-language-server.js',
'--stdio'
}
}
```
]],
default_config = {
root_dir = [[root_pattern('sfdx-project.json')]],
},
},
}

0 comments on commit 6b264b2

Please sign in to comment.