https://github.com/angular/angular
Raw File
Tip revision: ae34e6cabdb6b7d4e6332ac18e94c7d6c28c7191 authored by Paul Gschwendtner on 10 January 2023, 14:04:24 UTC
fix(language-service): expose `package.json` for vscode extension resolution (#48678)
Tip revision: ae34e6c
BUILD.bazel
load("//tools:defaults.bzl", "ng_module")

package(default_visibility = ["//visibility:public"])

exports_files([
    "package.json",
    "schema.json",
])

filegroup(
    name = "sources",
    srcs = glob([
        "*.ts",
        "src/**/*.ts",
    ]),
)

ng_module(
    name = "config",
    srcs = [":sources"],
    deps = ["//packages/core"],
)
back to top