Files
Pei Wang adaff4109b ci: Upgrade tsec to 0.2.0. (#44205)
tools/tsec.bzl is now part of tsec. Remove from Angular repo and update
BUILD.bazel files.

PR Close #44205
2021-11-24 18:55:58 +00:00

30 lines
598 B
Python

load("//tools:defaults.bzl", "ng_module")
load("@npm//tsec:index.bzl", "tsec_test")
package(default_visibility = ["//visibility:public"])
exports_files(["package.json"])
ng_module(
name = "animations",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
deps = [
"//packages/animations",
"//packages/animations/browser",
"//packages/common",
"//packages/core",
"//packages/platform-browser",
],
)
tsec_test(
name = "tsec_test",
target = "animations",
tsconfig = "//packages:tsec_config",
)