mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
336 B
Python
12 lines
336 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,
|
||
|
|
generate_ve_shims = False,
|
||
|
|
srcs = srcs,
|
||
|
|
assets = angular_assets,
|
||
|
|
**kwargs
|
||
|
|
)
|