https://github.com/angular/angular
Raw File
Tip revision: 84fc1a3663f9e008ebcfee4e3826da6bf93d7e55 authored by Igor Minar on 16 April 2018, 08:00:31 UTC
docs: add changelog for the 4.4.7 release
Tip revision: 84fc1a3
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