mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
301 B
Python
11 lines
301 B
Python
|
|
load("//tools:defaults.bzl", _ng_module = "ng_module")
|
||
|
|
|
||
|
|
def ng_module(name, tsconfig = "//devtools:tsconfig.json", srcs = [], angular_assets = [], **kwargs):
|
||
|
|
_ng_module(
|
||
|
|
name = name,
|
||
|
|
tsconfig = tsconfig,
|
||
|
|
srcs = srcs,
|
||
|
|
assets = angular_assets,
|
||
|
|
**kwargs
|
||
|
|
)
|