mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
f201df9b83
Use the new jasmine_test based on rules_js instead of jasmine_node_test from rules_nodejs PR Close #62106
21 lines
643 B
Python
21 lines
643 B
Python
load("//tools:defaults2.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "linker",
|
|
srcs = ["index.ts"] + glob([
|
|
"src/**/*.ts",
|
|
]),
|
|
deps = [
|
|
"//:node_modules/@types/semver",
|
|
"//:node_modules/semver",
|
|
"//:node_modules/typescript",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli/src/ngtsc/file_system:file_system_rjs",
|
|
"//packages/compiler-cli/src/ngtsc/logging:logging_rjs",
|
|
"//packages/compiler-cli/src/ngtsc/sourcemaps:sourcemaps_rjs",
|
|
"//packages/compiler-cli/src/ngtsc/translator:translator_rjs",
|
|
],
|
|
)
|