angular/packages/core/primitives/devtools/BUILD.bazel
tsc036 34e1fe235f
refactor(core): export profile event as enum and move profile_types.ts and framework to shared devtools folder
move framework enum and profile_types to a shared folder so it can be used by wiz
2025-11-19 15:22:49 -08:00

24 lines
401 B
Text

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"],
)