blob: f56dd4cb1e54db670ec904849b66a3fa13ca722d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local Pkg = require "mason-core.package"
local _ = require "mason-core.functional"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "angular-language-server",
desc = _.dedent [[
The Angular Language Service provides code editors with a way to get completions, errors, hints, and navigation
inside Angular templates. It works with external templates in separate HTML files, and also with in-line
templates.
]],
homepage = "https://angular.io/guide/language-service",
languages = { Pkg.Lang.Angular },
categories = { Pkg.Cat.LSP },
install = npm.packages { "@angular/language-server", "typescript", bin = { "ngserver" } },
}
|