20 lines
478 B
Lua
20 lines
478 B
Lua
return {
|
|
cmd = { "typescript-language-server", "--stdio" },
|
|
filetypes = {
|
|
"javascript",
|
|
"javascriptreact",
|
|
"javascript.jsx",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"typescript.tsx",
|
|
},
|
|
root_markers = { "tsconfig.json", "package.json", ".git" },
|
|
init_options = {
|
|
hostInfo = "neovim",
|
|
preferences = {
|
|
importModuleSpecifierPreference = "relative",
|
|
importModuleSpecifierEnding = "minimal",
|
|
},
|
|
},
|
|
single_file_support = true,
|
|
}
|