10 lines
339 B
Lua
10 lines
339 B
Lua
|
|
-- Install: npm install -g typescript typescript-language-server
|
||
|
|
return {
|
||
|
|
cmd = { "typescript-language-server", "--stdio" },
|
||
|
|
filetypes = {
|
||
|
|
"javascript", "javascriptreact", "javascript.jsx",
|
||
|
|
"typescript", "typescriptreact", "typescript.tsx",
|
||
|
|
},
|
||
|
|
root_markers = { "tsconfig.json", "jsconfig.json", "package.json", ".git" },
|
||
|
|
}
|