blob: 6bc149c6527f690e17a049f88be4076a6fa3a513 [file] [log] [blame]
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
load("//examples/es5_output:es5_consumer.bzl", "es5_consumer")
load("//internal:defaults.bzl", "ts_library")
ts_library(
name = "googmodule",
srcs = ["a.ts"],
tsconfig = "tsconfig.json",
)
es5_consumer(
name = "es5_output",
deps = [":googmodule"],
)
jasmine_node_test(
name = "googmodule_output_test",
srcs = ["googmodule_output_test.js"],
data = [
":es5_output",
"@npm//jasmine",
],
)