dotfiles/nvim/lsp/ts_ls.lua

10 lines
339 B
Lua
Raw Normal View History

-- 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" },
}