mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
16 lines
288 B
Text
16 lines
288 B
Text
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",
|
|
],
|
|
)
|