build: Bazel builds ngfactories for packages/core (#18289)

PR Close #18289
This commit is contained in:
Alex Eagle
2017-07-21 14:20:34 -07:00
committed by Miško Hevery
parent 0317c4c478
commit 6fc5940959
12 changed files with 137 additions and 12 deletions

View File

@ -0,0 +1,13 @@
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",
)