https://github.com/angular/angular
Raw File
Tip revision: 06e479ff66c4fd91208311334f57c7d21b36d554 authored by Victor Berchet on 10 August 2017, 16:39:40 UTC
docs: add changelog for 4.3.4
Tip revision: 06e479f
BUILD.bazel
package(default_visibility=["//visibility:public"])
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")

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