blob: 3c1aefec2e6f866b3d6b7abe35386aba41ce610f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "angular-language-server",
desc = [[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" } },
}
|