mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 02:54:21 +08:00
The miscellaneous test infrastructure targets within `tests/` have been migrated to the `rules_js` ts_project rule.
32 lines
728 B
Python
32 lines
728 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",
|
|
],
|
|
),
|
|
interop_deps = [
|
|
"//packages/angular_devkit/schematics",
|
|
],
|
|
deps = [
|
|
"//:root_modules/@types/jasmine",
|
|
"//:root_modules/@types/node",
|
|
],
|
|
)
|