angular/packages/misc/angular-in-memory-web-api/BUILD.bazel
Joey Perrott 8bf97d1370 build: remove all usages of the interop_deps attr for ts_project and ng_project (#62732)
Remove all of the usages of interop_deps as attributes in the repo

PR Close #62732
2025-07-21 13:03:09 -04:00

29 lines
653 B
Text

load("//tools:defaults2.bzl", "ng_package", "ng_project")
package(default_visibility = ["//visibility:public"])
ng_project(
name = "angular-in-memory-web-api",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
module_name = "angular-in-memory-web-api",
deps = [
"//:node_modules/rxjs",
"//packages/common:common_rjs",
"//packages/common/http:http_rjs",
"//packages/core:core_rjs",
],
)
ng_package(
name = "npm_package",
srcs = ["package.json"],
package = "angular-in-memory-web-api",
deps = [
":angular-in-memory-web-api_rjs",
],
)