@@ -11,7 +11,7 @@ load("@npm_bazel_typescript//:defs.bzl", "ts_library")
1111load ("@build_bazel_rules_nodejs//:defs.bzl" , "npm_package" )
1212# @external_end
1313
14- licenses (["notice" ]) # MIT License
14+ licenses (["notice" ])
1515
1616# @angular-devkit/schematics
1717
@@ -27,6 +27,8 @@ ts_library(
2727 ),
2828 module_name = "@angular-devkit/schematics" ,
2929 module_root = "src/index.d.ts" ,
30+ # The attribute below is needed in g3 to turn off strict typechecking
31+ # strict_checks = False,
3032 deps = [
3133 "//packages/angular_devkit/core" ,
3234 "//packages/angular_devkit/core:node" , # TODO: get rid of this for 6.0
@@ -82,6 +84,8 @@ ts_library(
8284 ),
8385 module_name = "@angular-devkit/schematics/tasks" ,
8486 module_root = "tasks/index.d.ts" ,
87+ # The attribute below is needed in g3 to turn off strict typechecking
88+ # strict_checks = False,
8589 deps = [
8690 ":schematics" ,
8791 "//packages/angular_devkit/core" ,
@@ -106,6 +110,8 @@ ts_library(
106110 ),
107111 module_name = "@angular-devkit/schematics/tasks/node" ,
108112 module_root = "tasks/node/index.d.ts" ,
113+ # The attribute below is needed in g3 to turn off strict typechecking
114+ # strict_checks = False,
109115 deps = [
110116 ":schematics" ,
111117 ":tasks" ,
@@ -130,6 +136,8 @@ ts_library(
130136 "tasks/tslint-fix/test/collection.json" ,
131137 "tasks/tslint-fix/test/rules/customRuleRule.js" ,
132138 ],
139+ # The attribute below is needed in g3 to turn off strict typechecking
140+ # strict_checks = False,
133141 # @external_begin
134142 tsconfig = "//:tsconfig-test.json" ,
135143 # @external_end
@@ -169,6 +177,8 @@ ts_library(
169177 ),
170178 module_name = "@angular-devkit/schematics/tools" ,
171179 module_root = "tools/index.d.ts" ,
180+ # The attribute below is needed in g3 to turn off strict typechecking
181+ # strict_checks = False,
172182 deps = [
173183 ":schematics" ,
174184 ":tasks" ,
0 commit comments