nvim/lsp/angularls.lua
2026-04-13 17:02:19 -03:00

14 lines
447 B
Lua

return {
cmd = { 'ngserver', '--stdio', '--tsProbeLocations', '', '--ngProbeLocations', '' },
filetypes = { 'typescript', 'htmlangular' },
root_markers = { 'angular.json' },
on_new_config = function(new_config, new_root_dir)
local node_modules = new_root_dir .. '/node_modules'
new_config.cmd = {
'ngserver',
'--stdio',
'--tsProbeLocations', node_modules,
'--ngProbeLocations', node_modules,
}
end,
}