|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test",
|
|
testonly = 1,
|
|
srcs = glob(["test/**/*.ts"]),
|
|
tsconfig = "//packages:tsconfig",
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/animations",
|
|
"//packages/core/testing",
|
|
],
|
|
)
|