20 lines
385 B
Python
20 lines
385 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "common",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "@angular/common",
|
|
tsconfig = "//packages:tsconfig",
|
|
deps = [
|
|
"//packages/core",
|
|
"@rxjs",
|
|
],
|
|
)
|