mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
34e1fe235f
move framework enum and profile_types to a shared folder so it can be used by wiz
25 lines
401 B
Python
25 lines
401 B
Python
load("//tools:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = [
|
|
"//packages:__pkg__",
|
|
"//packages/core:__subpackages__",
|
|
])
|
|
|
|
ts_project(
|
|
name = "devtools",
|
|
srcs = glob(
|
|
[
|
|
"**/*.ts",
|
|
],
|
|
),
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
]),
|
|
visibility = ["//visibility:public"],
|
|
)
|