35 lines
908 B
Lua
35 lines
908 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'vtsls', '--stdio' },
|
|
filetypes = {
|
|
'javascript',
|
|
'javascriptreact',
|
|
'javascript.jsx',
|
|
'typescript',
|
|
'typescriptreact',
|
|
'typescript.tsx',
|
|
},
|
|
root_dir = util.root_pattern('tsconfig.json', 'package.json', 'jsconfig.json', '.git'),
|
|
single_file_support = true,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/yioneko/vtsls
|
|
|
|
`vtsls` can be installed with npm:
|
|
```sh
|
|
npm install -g @vtsls/language-server
|
|
```
|
|
|
|
To configure a TypeScript project, 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.
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git")]],
|
|
},
|
|
},
|
|
}
|