This commit adds a new entry point for the Ivy version of language service. The entry point is just a shell for now, implementation will be added in subsequent PRs. The Ivy version of language service could be loaded from the NPM package via `require(@angular/language-service/bundles/ivy.umd.js)` PR Close #36864
12 lines
206 B
Python
12 lines
206 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "ivy",
|
|
srcs = glob(["*.ts"]),
|
|
deps = [
|
|
"@npm//typescript",
|
|
],
|
|
)
|