https://github.com/angular/angular
Raw File
Tip revision: 2686219fcee938fbb4359aa6318ffd97f91b0240 authored by Alex Rickabaugh on 14 December 2017, 16:36:01 UTC
ci: sync CircleCI config from master to 5.0.x
Tip revision: 2686219
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