source: trip-planner-front/node_modules/@angular-devkit/core/node/testing/BUILD.bazel@ 571e0df

Last change on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 880 bytes
Line 
1load("//tools:defaults.bzl", "ts_library")
2
3# Copyright Google Inc. All Rights Reserved.
4#
5# Use of this source code is governed by an MIT-style license that can be
6# found in the LICENSE file at https://angular.io/license
7licenses(["notice"]) # MIT License
8
9package(default_visibility = ["//visibility:public"])
10
11ts_library(
12 name = "testing",
13 srcs = glob(
14 include = ["**/*.ts"],
15 exclude = [
16 "**/*_spec.ts",
17 "**/*_benchmark.ts",
18 ],
19 ),
20 module_name = "@angular-devkit/core/node/testing",
21 module_root = "index.d.ts",
22 # The attribute below is needed in g3 to turn off strict typechecking
23 # strict_checks = False,
24 deps = [
25 "//packages/angular_devkit/core",
26 "//packages/angular_devkit/core/node",
27 "@npm//@types/jasmine",
28 "@npm//@types/node",
29 "@npm//rxjs",
30 ],
31)
Note: See TracBrowser for help on using the repository browser.