mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-15 10:11:50 +08:00
* Removes `interop_deps` from the `ts_project` interop macro. * Keeps `_rjs` suffix for now as we still need the interop targets for e.g. `jasmine_node_test` and the `rules_nodejs` linker. In follow-ups we can remove the suffix, and interop layer.
30 lines
715 B
Python
30 lines
715 B
Python
load("//tools:interop.bzl", "ts_project")
|
|
|
|
# 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.dev/license
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
ts_project(
|
|
name = "file_system_engine_host_test_lib",
|
|
srcs = glob(
|
|
include = [
|
|
"**/*.ts",
|
|
],
|
|
),
|
|
data = glob(
|
|
include = [
|
|
"**/collection.json",
|
|
"**/*.js",
|
|
],
|
|
),
|
|
deps = [
|
|
"//:root_modules/@types/jasmine",
|
|
"//:root_modules/@types/node",
|
|
"//packages/angular_devkit/schematics:schematics_rjs",
|
|
],
|
|
)
|