mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a24293ae80
As mentioned in previous commits (check them for more details), `@bazel/typescript` no longer contains `ts_library`-specific code, so we no longer need that dependency. PR Close #45431
17 lines
288 B
Python
17 lines
288 B
Python
load("//tools:defaults.bzl", "ts_config")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"cypress.json",
|
|
])
|
|
|
|
ts_config(
|
|
name = "tsconfig_spec",
|
|
src = "tsconfig.spec.json",
|
|
deps = [
|
|
"//devtools:tsconfig.json",
|
|
],
|
|
)
|