@@ -11,7 +11,7 @@ load("@npm_bazel_typescript//:defs.bzl", "ts_library")
11
11
load ("@build_bazel_rules_nodejs//:defs.bzl" , "npm_package" )
12
12
# @external_end
13
13
14
- licenses (["notice" ]) # MIT License
14
+ licenses (["notice" ])
15
15
16
16
# @angular-devkit/schematics
17
17
@@ -27,6 +27,8 @@ ts_library(
27
27
),
28
28
module_name = "@angular-devkit/schematics" ,
29
29
module_root = "src/index.d.ts" ,
30
+ # The attribute below is needed in g3 to turn off strict typechecking
31
+ # strict_checks = False,
30
32
deps = [
31
33
"//packages/angular_devkit/core" ,
32
34
"//packages/angular_devkit/core:node" , # TODO: get rid of this for 6.0
@@ -82,6 +84,8 @@ ts_library(
82
84
),
83
85
module_name = "@angular-devkit/schematics/tasks" ,
84
86
module_root = "tasks/index.d.ts" ,
87
+ # The attribute below is needed in g3 to turn off strict typechecking
88
+ # strict_checks = False,
85
89
deps = [
86
90
":schematics" ,
87
91
"//packages/angular_devkit/core" ,
@@ -106,6 +110,8 @@ ts_library(
106
110
),
107
111
module_name = "@angular-devkit/schematics/tasks/node" ,
108
112
module_root = "tasks/node/index.d.ts" ,
113
+ # The attribute below is needed in g3 to turn off strict typechecking
114
+ # strict_checks = False,
109
115
deps = [
110
116
":schematics" ,
111
117
":tasks" ,
@@ -130,6 +136,8 @@ ts_library(
130
136
"tasks/tslint-fix/test/collection.json" ,
131
137
"tasks/tslint-fix/test/rules/customRuleRule.js" ,
132
138
],
139
+ # The attribute below is needed in g3 to turn off strict typechecking
140
+ # strict_checks = False,
133
141
# @external_begin
134
142
tsconfig = "//:tsconfig-test.json" ,
135
143
# @external_end
@@ -169,6 +177,8 @@ ts_library(
169
177
),
170
178
module_name = "@angular-devkit/schematics/tools" ,
171
179
module_root = "tools/index.d.ts" ,
180
+ # The attribute below is needed in g3 to turn off strict typechecking
181
+ # strict_checks = False,
172
182
deps = [
173
183
":schematics" ,
174
184
":tasks" ,
0 commit comments