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