https://github.com/angular/angular
Raw File
Tip revision: 967e9345b39db19b81114fc7bdb8456c3db7364c authored by Dylan Hunn on 04 May 2022, 20:12:56 UTC
release: cut the v14.0.0-next.16 release (#45875)
Tip revision: 967e934
BUILD.bazel
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",
    ],
)
back to top