mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 13:07:50 +02:00
22 lines
548 B
Text
22 lines
548 B
Text
package(
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library")
|
|
|
|
closure_js_library(
|
|
name = "js",
|
|
srcs = glob(["*.js"]),
|
|
suppress = [
|
|
"JSC_UNKNOWN_EXPR_TYPE",
|
|
"JSC_IMPLICITLY_NULLABLE_JSDOC",
|
|
"JSC_DEPRECATED_PROP_REASON",
|
|
"JSC_STRICT_INEXISTENT_PROPERTY",
|
|
],
|
|
deps = [
|
|
"//java/google/registry/ui/soy",
|
|
"@io_bazel_rules_closure//closure/library",
|
|
],
|
|
)
|