fix: deno + ts_ls

This commit is contained in:
2025-12-01 20:01:23 +01:00
parent 07a7c41633
commit 269cbc23ea
2 changed files with 6 additions and 3 deletions

View File

@@ -2,4 +2,5 @@ return {
cmd = { 'deno', 'lsp' },
filetypes = { "javascript", "javascriptreact", "javascript.jsx", "typescript", "typescriptreact", "typescript.tsx" },
root_markers = { "deno.json", "deno.jsonc" },
workspace_required = true,
}

View File

@@ -1,5 +1,7 @@
return {
cmd = { 'typescript-language-server', '--stdio' },
filetypes = { 'typescript', 'typescriptreact', 'typescript.tsx', 'javascript', 'javascriptreact', 'javascript.jsx', 'js', 'jsx', 'ts', 'tsx' },
root_markers = { 'package.json', 'tsconfig.json', 'jsconfig.json', '.git' },
root_markers = { 'package.json', 'tsconfig.json', 'jsconfig.json' },
single_file_support = false,
workspace_required = true,
}