2017-06-02 12:43:52 -04:00
|
|
|
package(default_visibility=["//visibility:public"])
|
|
|
|
|
2017-08-22 19:56:29 -04:00
|
|
|
load("@angular//:index.bzl", "ng_module")
|
2017-07-21 17:20:34 -04:00
|
|
|
|
|
|
|
ng_module(
|
2017-08-22 19:56:29 -04:00
|
|
|
name = "core",
|
2017-07-21 17:20:34 -04:00
|
|
|
srcs = glob(["**/*.ts"], exclude=[
|
|
|
|
"test/**",
|
|
|
|
"testing/**",
|
|
|
|
]),
|
|
|
|
module_name = "@angular/core",
|
|
|
|
tsconfig = ":tsconfig-build.json",
|
|
|
|
)
|