build: update bazel rules to latest (#18289)

This commit is contained in:
Alex Eagle
2017-07-21 14:11:35 -07:00
committed by Miško Hevery
parent a1bb9c2d42
commit 434ff5fecb
8 changed files with 90 additions and 16 deletions

13
packages/core/BUILD.bazel Normal file
View File

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