aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/custom_elements_ls.lua
blob: 2f32ac75f6f93204a89b5844755557cfae544e97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---@brief
---
-- https://github.com/Matsuuu/custom-elements-language-server
--
-- `custom-elements-languageserver` depends on `typescript`. Both packages can be installed via `npm`:
-- ```sh
-- npm install -g typescript custom-elements-languageserver
-- ```
-- To configure typescript language server, add a
-- [`tsconfig.json`](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) or
-- [`jsconfig.json`](https://code.visualstudio.com/docs/languages/jsconfig) to the root of your
-- project.
-- Here's an example that disables type checking in JavaScript files.
-- ```json
-- {
--   "compilerOptions": {
--     "module": "commonjs",
--     "target": "es6",
--     "checkJs": false
--   },
--   "exclude": [
--     "node_modules"
--   ]
-- }
-- ```
return {
  init_options = { hostInfo = 'neovim' },
  cmd = { 'custom-elements-languageserver', '--stdio' },
  root_dir = { 'tsconfig.json', 'package.json', 'jsconfig.json', '.git' },
}