Keen Yee Liau 95a407d9dd build: Add entry point for Ivy language service ()
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 
2020-05-01 10:02:03 -07:00

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