2017-12-06 09:56:49 -05:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2017-07-21 17:20:34 -04:00
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "compiler",
|
2017-12-06 09:56:49 -05:00
|
|
|
srcs = glob(
|
|
|
|
[
|
|
|
|
"*.ts",
|
|
|
|
"src/**/*.ts",
|
|
|
|
],
|
|
|
|
),
|
2017-07-21 17:20:34 -04:00
|
|
|
module_name = "@angular/compiler",
|
2017-12-06 09:56:49 -05:00
|
|
|
tsconfig = "//packages:tsconfig",
|
2017-07-21 17:20:34 -04:00
|
|
|
)
|