18 lines
436 B
Python
18 lines
436 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test",
|
|
testonly = 1,
|
|
srcs = glob(["**/*.ts"]),
|
|
tsconfig = "//packages:tsconfig",
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
"//packages/animations/browser/testing",
|
|
"//packages/core",
|
|
],
|
|
)
|