41 lines
1.2 KiB
Python

# Copyright Google Inc. All Rights Reserved.
#
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE file at https://angular.io/license
licenses(["notice"]) # MIT
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
load("//tools:ts_json_schema.bzl", "ts_json_schema")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "pwa",
srcs = glob(
["**/*.ts"],
# Currently, this library is used only with the rollup plugin.
# To make it simpler for downstream repositories to compile this, we
# neither provide compile-time deps as an `npm_install` rule, nor do we
# expect the downstream repository to install @types/webpack[-*]
# So we exclude files that depend on webpack typings.
exclude = [
"pwa/files/**/*",
"**/*_spec.ts",
"**/*_spec_large.ts",
],
),
deps = [
":pwa_schema",
"//packages/angular_devkit/core",
"//packages/angular_devkit/schematics",
"@rxjs",
# @typings: node
],
)
ts_json_schema(
name = "pwa_schema",
src = "pwa/schema.json",
)