aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/tsserver.lua
blob: 99d8e173782a9bde3ac2c4fcc6f5304f3d92bda8 (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
31
local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'

local server_name = "tsserver"
local bin_name = "typescript-language-server"
if vim.fn.has('win32') == 1 then
  bin_name = bin_name..".cmd"
end

configs[server_name] = {
  default_config = {
    cmd = {bin_name, "--stdio"};
    filetypes = {"javascript", "javascriptreact", "javascript.jsx", "typescript", "typescriptreact", "typescript.tsx"};
    root_dir = util.root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git");
  };
  docs = {
    description = [[
https://github.com/theia-ide/typescript-language-server

`typescript-language-server` can be installed via `npm`:
```sh
npm install -g typescript-language-server
```
]];
    default_config = {
      root_dir = [[root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git")]];
    };
  };
}

-- vim:et ts=2 sw=2