Files
Cameron Smick e881b962cc refactor(core): move signal debug graph interfaces to primitives/devtools
Move the DebugSignalGraph, DebugSignalGraphEdge, and DebugSignalGraphNode interfaces from packages/core/src/render3/util/signal_debug.ts into the packages/core/primitives/devtools/src package. This decouples the signal graph debug types from runtime render3 utilities and allows devtools and internal core tooling to import them directly from primitives as type-only exports.

(cherry picked from commit d997a96b47)
2026-07-14 11:09:27 -07:00

28 lines
467 B
Python

load("//tools:defaults.bzl", "ts_project")
package(default_visibility = [
"//packages:__pkg__",
"//packages/core:__subpackages__",
])
ts_project(
name = "devtools",
srcs = glob(
[
"**/*.ts",
],
),
deps = [
"//packages/core/primitives/signals",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"*.ts",
"src/**/*.ts",
]),
visibility = ["//visibility:public"],
)