source: trip-planner-front/node_modules/@angular-devkit/schematics/tasks/node/BUILD.bazel

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

initial commit

  • Property mode set to 100644
File size: 936 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"])
8
9package(default_visibility = ["//visibility:public"])
10
11ts_library(
12 name = "node",
13 srcs = glob(
14 include = ["**/*.ts"],
15 exclude = [
16 "**/*_spec.ts",
17 "**/*_benchmark.ts",
18 ],
19 ),
20 module_name = "@angular-devkit/schematics/tasks/node",
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 "//packages/angular_devkit/schematics",
28 "//packages/angular_devkit/schematics/tasks",
29 "@npm//@types/node",
30 "@npm//rxjs",
31 ],
32)
Note: See TracBrowser for help on using the repository browser.