mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
0f13d908a9
Migrates all `modules/...` code to `ts_project`. PR Close #61779
18 lines
364 B
Python
18 lines
364 B
Python
load("//tools:defaults2.bzl", "ts_config")
|
|
|
|
package(default_visibility = ["//modules/benchmarks:__subpackages__"])
|
|
|
|
ts_config(
|
|
name = "tsconfig_build",
|
|
src = "tsconfig-build.json",
|
|
)
|
|
|
|
ts_config(
|
|
name = "tsconfig_e2e",
|
|
src = "tsconfig-e2e.json",
|
|
deps = [
|
|
"//:node_modules/@types/jasmine",
|
|
"//:node_modules/@types/node",
|
|
],
|
|
)
|