https://github.com/angular/angular
Raw File
Tip revision: 7e9440527154b5c3f0c8a65816cb819885c97a6a authored by Hans Larsen on 16 August 2017, 17:51:23 UTC
docs: add changelog for 4.3.5
Tip revision: 7e94405
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