https://github.com/angular/angular
Raw File
Tip revision: 522ec9a25b411cc7596df2348c364867a8bce819 authored by Chuck Jazdzewski on 12 October 2017, 20:43:49 UTC
docs: add changelog for 5.0.0-rc.2
Tip revision: 522ec9a
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/**",
      "locales/**",
      "test/**",
      "testing/**",
    ]),
    module_name = "@angular/common",
    deps = ["//packages/core"],
    tsconfig = ":tsconfig-build.json",
)
back to top