14 lines
304 B
Python
14 lines
304 B
Python
|
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",
|
||
|
],
|
||
|
)
|