https://github.com/angular/angular
Raw File
Tip revision: d489ad595de1e128ec6f96d2383fef696c78217b authored by Victor Berchet on 28 September 2017, 19:18:14 UTC
docs: add changelog for 4.4.4
Tip revision: d489ad5
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