Alex Rickabaugh 643c96184c refactor(language-service): introduce DisplayParts abstraction for Ivy (#39505)
This commit refactors the QuickInfo abstraction shared between the VE and
Ivy services and used to implement hover tooltips (quick info), which was
extracted from the VE code in commit faa81dc. The new DisplayParts
abstraction is more general and can be used to extract information needed by
various LS functions (e.g. autocompletion).

This commit effectively reverts faa81dc, returning the original code to the
VE implementation as the Ivy code is now diverged.

PR Close #39505
2020-11-02 10:29:50 -08:00

53 lines
1.2 KiB
Python

load("//tools:defaults.bzl", "pkg_npm", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "language-service",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
exclude = [
"src/ts_utils.ts",
],
),
deps = [
":ts_utils",
"//packages:types",
"//packages/compiler",
"//packages/compiler-cli",
"//packages/core",
"@npm//@types/node",
"@npm//typescript",
],
)
ts_library(
name = "ts_utils",
srcs = ["src/ts_utils.ts"],
deps = [
"@npm//typescript",
],
)
pkg_npm(
name = "npm_package",
srcs = ["package.json"],
tags = [
"release-with-framework",
],
# Do not add more to this list.
# Dependencies on the full npm_package cause long re-builds.
visibility = [
"//integration:__pkg__",
],
deps = [
":language-service",
# min bundle is not used at the moment; omit from package to speed up build
"//packages/language-service/bundles:language-service.js",
"//packages/language-service/bundles:ivy.js",
],
)