19 lines
437 B
Python
19 lines
437 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "linker",
|
|
srcs = ["index.ts"] + glob([
|
|
"src/**/*.ts",
|
|
]),
|
|
deps = [
|
|
"//packages/compiler-cli/src/ngtsc/translator",
|
|
"@npm//@babel/core",
|
|
"@npm//@babel/types",
|
|
"@npm//@types/babel__core",
|
|
"@npm//@types/babel__traverse",
|
|
"@npm//typescript",
|
|
],
|
|
)
|