mirror of
https://github.com/google/nomulus
synced 2026-01-08 07:11:44 +00:00
23 lines
548 B
Python
23 lines
548 B
Python
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",
|
|
],
|
|
)
|