...

Text file src/github.com/google/flatbuffers/reflection/ts/BUILD.bazel

Documentation: github.com/google/flatbuffers/reflection/ts

     1load("//:typescript.bzl", "flatbuffer_ts_library")
     2
     3genrule(
     4    name = "copy_schema_to_folder",
     5    srcs = ["//reflection:reflection_fbs_schema"],
     6    outs = ["reflection.fbs"],
     7    cmd = "cp $< $@",
     8)
     9
    10flatbuffer_ts_library(
    11    name = "reflection_ts_fbs",
    12    srcs = [":reflection.fbs"],
    13    visibility = ["//visibility:public"],
    14)

View as plain text