13 lines
315 B
Python
13 lines
315 B
Python
package(default_visibility=["//visibility:public"])
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "compiler",
|
|
srcs = glob(["**/*.ts"], exclude=[
|
|
"test/**",
|
|
"testing/**",
|
|
]),
|
|
module_name = "@angular/compiler",
|
|
tsconfig = ":tsconfig-build.json",
|
|
)
|