angular-cn/packages/compiler/BUILD.bazel

14 lines
347 B
Python

package(default_visibility=["//visibility:public"])
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
ts_library(
name = "compiler",
srcs = glob(["**/*.ts"], exclude=[
"test/**",
"testing/**",
]),
module_name = "@angular/compiler",
deps = ["//packages/core"],
tsconfig = ":tsconfig-build.json",
)