https://github.com/angular/angular
Raw File
Tip revision: 78ba39bfe20fe2b187108bfd92641505ff955c58 authored by Victor Berchet on 08 November 2017, 19:32:48 UTC
docs: add changelog for 5.1.0-beta.0
Tip revision: 78ba39b
BUILD.bazel
package(default_visibility=["//visibility:public"])

load("@angular//:index.bzl", "ng_module")

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