https://github.com/angular/angular
Raw File
Tip revision: d34f0bf573b40cc3960b86d3f29fa892c61e95b0 authored by Alex Rickabaugh on 01 December 2017, 22:55:51 UTC
docs: add changelog for 5.1.0-rc.1
Tip revision: d34f0bf
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