We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d515a commit 0b3d996Copy full SHA for 0b3d996
packages/angular/pwa/BUILD
@@ -6,6 +6,7 @@
6
licenses(["notice"]) # MIT
7
8
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
9
+load("//tools:ts_json_schema.bzl", "ts_json_schema")
10
11
package(default_visibility = ["//visibility:public"])
12
@@ -25,9 +26,15 @@ ts_library(
25
26
],
27
),
28
deps = [
29
+ ":pwa_schema",
30
"//packages/angular_devkit/core",
31
"//packages/angular_devkit/schematics",
32
"@rxjs",
33
# @typings: node
34
35
)
36
+
37
+ts_json_schema(
38
+ name = "pwa_schema",
39
+ src = "pwa/schema.json",
40
+)
packages/angular/pwa/pwa/schema.d.ts
0 commit comments