Alex Perry | f82524c | 2022-03-09 20:04:47 -0800 | [diff] [blame] | 1 | load("@npm//@bazel/typescript:index.bzl", "ts_library") |
| 2 | |
| 3 | ts_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 | ) |