https://github.com/angular/angular
Raw File
Tip revision: f5b7f2b9a5bf7e8d8f4ba645d97bd214d1df0fe2 authored by Matias Niemelä on 31 October 2017, 04:09:14 UTC
docs: add changelog for 5.0.0-rc.9
Tip revision: f5b7f2b
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