blob: 1dbcdfc99402d6de7039bf392b79a7c8fedc7db1 [file] [log] [blame]
Alex Perryf82524c2022-03-09 20:04:47 -08001load("@npm//@bazel/typescript:index.bzl", "ts_library")
2
3ts_library(
4 name = "counter_button",
5 srcs = [
6 "counter_button.component.ts",
7 "counter_button.module.ts",
8 ],
9 angular_assets = [
10 "counter_button.component.css",
11 "counter_button.ng.html",
12 ],
13 compiler = "//tools:tsc_wrapped_with_angular",
14 target_compatible_with = ["@platforms//cpu:x86_64"],
15 use_angular_plugin = True,
16 visibility = ["//visibility:public"],
17 deps = [
18 "@npm//@angular/common",
19 "@npm//@angular/core",
20 ],
21)