2019-03-30 12:48:21 +01:00
|
|
|
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "tslint",
|
|
|
|
srcs = glob(["**/*.ts"]),
|
|
|
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
2019-04-12 20:19:32 +02:00
|
|
|
visibility = [
|
2019-06-18 11:28:23 +02:00
|
|
|
"//packages/core/schematics/migrations/google3:__pkg__",
|
2019-04-12 20:19:32 +02:00
|
|
|
],
|
2019-05-09 14:51:51 -07:00
|
|
|
deps = ["@npm//typescript"],
|
2019-03-30 12:48:21 +01:00
|
|
|
)
|