/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/symbol-extractor/BUILD.bazel
44 строки
969 B
Joey Perrott
build: update to bazel version 8.4.2
08 дек 2025, 21:21
08 дек 2025, 21:21
aa92f19
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "jasmine_test", "ts_project") package(default_visibility = ["//visibility:public"]) ts_project( name = "lib", testonly = True, srcs = glob( ["**/*.mts"], exclude = [ "**/*_spec.mts", "**/*_spec", ], ), tsconfig = "//tools:tsconfig_build", deps = [ "//:node_modules/@types/jasmine", "//:node_modules/tinyglobby", "//:node_modules/typescript", ], ) ts_project( name = "test_lib", testonly = 1, srcs = glob( ["**/*_spec.mts"], exclude = ["symbol_extractor_spec/**"], ), tsconfig = "//tools:tsconfig_test", deps = [ ":lib", "//:node_modules/typescript", ], ) jasmine_test( name = "test", data = [ ":test_lib", "//tools/symbol-extractor/symbol_extractor_spec:es2015_class_output", "//tools/symbol-extractor/symbol_extractor_spec:fixtures", ], )