Charles Lyding 7b15a15af8 build: migrate tests infrastructure to ts_project
The miscellaneous test infrastructure targets within `tests/` have been migrated to the `rules_js` ts_project rule.
2025-01-06 13:10:15 -05:00

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",
],
)