https://github.com/angular/angular
Raw File
Tip revision: 63275ae82cc4b5d99a551390004459918dee5bb3 authored by Jessica Janiuk on 27 January 2021, 19:44:36 UTC
release: cut the v11.1.1 release (#40598)
Tip revision: 63275ae
BUILD.bazel
load("//tools:defaults.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

ts_library(
    name = "es2015_class_output_lib",
    srcs = ["es2015_class_output.ts"],
)

filegroup(
    name = "es2015_class_output",
    srcs = [":es2015_class_output_lib"],
    output_group = "es6_sources",
)

filegroup(
    name = "fixtures",
    srcs = glob([
        "**/*.js",
        "**/*.json",
    ]),
)
back to top