This commit enables the Ivy Language Service to 'go to definition' of a templateUrl or styleUrl, which would jump to the template/style file itself. PR Close #39202
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",
|
|
],
|
|
)
|