https://github.com/angular/angular
Raw File
Tip revision: e2e8ba6ffa382319c4f8b8cc4bc43814e7c0f97c authored by Igor Minar on 19 September 2017, 22:22:05 UTC
release: cut the 4.4.3 release
Tip revision: e2e8ba6
BUILD.bazel
package(default_visibility=["//visibility:public"])
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")

ts_library(
    name = "common",
    srcs = glob(["**/*.ts"], exclude=[
      "http/**",
      "test/**",
      "testing/**",
    ]),
    module_name = "@angular/common",
    deps = ["//packages/core"],
    tsconfig = ":tsconfig-build.json",
)
back to top