mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Move ts_project and ng_project into a macro for adev/ instead of providing a custom tsconfig on every target PR Close #61319
20 lines
463 B
Text
20 lines
463 B
Text
load("//adev/shared-docs:defaults.bzl", "ng_project")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
ng_project(
|
|
name = "algolia-icon",
|
|
srcs = [
|
|
"algolia-icon.component.ts",
|
|
],
|
|
assets = [
|
|
"algolia-icon.component.html",
|
|
],
|
|
interop_deps = [
|
|
"//packages/core",
|
|
],
|
|
visibility = [
|
|
"//adev/shared-docs/components:__pkg__",
|
|
"//adev/shared-docs/components/search-dialog:__pkg__",
|
|
],
|
|
)
|