Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BUILD.bazel 392B

12345678910111213
  1. package(default_visibility = ["//visibility:public"])
  2. load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
  3. ts_library(
  4. name = "operators",
  5. srcs = ["index.ts"],
  6. module_name = "rxjs/operators",
  7. module_root = "index.d.ts",
  8. node_modules = "@build_bazel_rules_typescript_tsc_wrapped_deps//:node_modules",
  9. tsconfig = "//:tsconfig.json",
  10. deps = ["//:lib"],
  11. )