mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
339 B
Python
10 lines
339 B
Python
load("//tools:typescript.bzl", _ts_project = "ts_project")
|
|
|
|
def ng_ts_project(name, tsconfig = "//:tsconfig.json", srcs = [], angular_assets = [], **kwargs):
|
|
_ts_project(
|
|
name = name,
|
|
tsconfig = tsconfig,
|
|
tsc = "@npm//@angular/compiler-cli/bin:ngc",
|
|
srcs = srcs + angular_assets,
|
|
**kwargs
|
|
)
|