|
package(default_visibility=["//visibility:public"])
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "tsc-wrapped",
|
|
srcs = glob(["**/*.ts"], exclude=[
|
|
"test/**",
|
|
]),
|
|
module_name = "@angular/tsc-wrapped",
|
|
tsconfig = ":tsconfig-build.json",
|
|
)
|