mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a5002fd69a
Migrate usages to ts_project PR Close #61221
22 lines
394 B
Python
22 lines
394 B
Python
load("@aspect_rules_ts//ts:defs.bzl", rules_js_tsconfig = "ts_config")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"cypress.json",
|
|
])
|
|
|
|
rules_js_tsconfig(
|
|
name = "tsconfig_build",
|
|
src = "tsconfig.json",
|
|
)
|
|
|
|
rules_js_tsconfig(
|
|
name = "tsconfig_test",
|
|
src = "tsconfig-test.json",
|
|
deps = [
|
|
":tsconfig_build",
|
|
],
|
|
)
|