Rather than having the Ivy implementation add the VE code to the deps list, create a new common package that both Ivy and VE depend on. This will make it more straightforward in the future to remove the VE code completely. PR Close #39098
12 lines
233 B
Python
12 lines
233 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//packages/language-service:__subpackages__"])
|
|
|
|
ts_library(
|
|
name = "common",
|
|
srcs = glob(["*.ts"]),
|
|
deps = [
|
|
"@npm//typescript",
|
|
],
|
|
)
|