ef534c0cc1
Add enough BUILD files to make it possible to `bazel build packages/core/test` Also re-format BUILD.bazel files with Buildifier. Add a CI lint check that they stay formatted. PR Close #20768
20 lines
395 B
Python
20 lines
395 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("@angular//:index.bzl", "ng_module")
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ng_module(
|
|
name = "core",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "@angular/core",
|
|
tsconfig = "//packages:tsconfig",
|
|
deps = [
|
|
"@rxjs",
|
|
],
|
|
)
|