2017-06-02 12:43:52 -04:00
|
|
|
package(default_visibility=["//visibility:public"])
|
2017-07-21 17:11:35 -04:00
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
2017-06-02 12:43:52 -04:00
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "common",
|
|
|
|
srcs = glob(["**/*.ts"], exclude=[
|
2017-03-22 20:13:24 -04:00
|
|
|
"http/**",
|
2017-08-28 14:35:35 -04:00
|
|
|
"locales/**",
|
2017-06-02 12:43:52 -04:00
|
|
|
"test/**",
|
|
|
|
"testing/**",
|
|
|
|
]),
|
|
|
|
module_name = "@angular/common",
|
|
|
|
deps = ["//packages/core"],
|
|
|
|
tsconfig = ":tsconfig-build.json",
|
|
|
|
)
|