build: re-enable template type-checking for various targets across the repo (#34144)
Various targets have their template type-checking disabled in the past. There is no reason for this any more. The only target that was tricky was packages/examples/core:core_examples which was quite broken and I had to fix it up. Template typechecking is still disabled under blaze, see FW-1753 for more info. PR Close #34144
This commit is contained in:
@ -9,11 +9,7 @@ ng_module(
|
||||
name = "ng2",
|
||||
srcs = glob(["*.ts"]),
|
||||
generate_ve_shims = True,
|
||||
# FIXME-IVY(FW-998): ExpressionTranslatorVisitor#visitWriteKeyExpr is not implemented.
|
||||
tags = ["fixme-ivy-aot"],
|
||||
tsconfig = "//modules/benchmarks:tsconfig-build.json",
|
||||
# TODO: FW-1004 Type checking is currently not complete.
|
||||
type_check = False,
|
||||
deps = [
|
||||
"//modules/benchmarks/src:util_lib",
|
||||
"//packages/core",
|
||||
@ -36,13 +32,11 @@ ts_devserver(
|
||||
"//tools/rxjs:rxjs_umd_modules",
|
||||
],
|
||||
static_files = ["index.html"],
|
||||
tags = ["fixme-ivy-aot"],
|
||||
deps = [":ng2"],
|
||||
)
|
||||
|
||||
benchmark_test(
|
||||
name = "perf",
|
||||
server = ":devserver",
|
||||
tags = ["fixme-ivy-aot"],
|
||||
deps = ["//modules/benchmarks/src/largeform:tests_lib"],
|
||||
)
|
||||
|
@ -11,8 +11,6 @@ ng_module(
|
||||
srcs = glob(["*.ts"]),
|
||||
generate_ve_shims = True,
|
||||
tsconfig = "//modules/benchmarks:tsconfig-build.json",
|
||||
# TODO: FW-1004 Type checking is currently not complete.
|
||||
type_check = False,
|
||||
deps = [
|
||||
"//modules/benchmarks/src:util_lib",
|
||||
"//modules/benchmarks/src/largetable:util_lib",
|
||||
|
@ -8,8 +8,6 @@ ng_module(
|
||||
srcs = glob(["*.ts"]),
|
||||
generate_ve_shims = True,
|
||||
tsconfig = "//modules/benchmarks:tsconfig-build.json",
|
||||
# TODO: FW-1004 Type checking is currently not complete.
|
||||
type_check = False,
|
||||
deps = [
|
||||
"//modules/benchmarks/src:util_lib",
|
||||
"//modules/benchmarks/src/largetable:util_lib",
|
||||
|
@ -11,8 +11,6 @@ ng_module(
|
||||
srcs = glob(["*.ts"]),
|
||||
generate_ve_shims = True,
|
||||
tsconfig = "//modules/benchmarks:tsconfig-build.json",
|
||||
# TODO: FW-1004 Type checking is currently not complete.
|
||||
type_check = False,
|
||||
deps = [
|
||||
"//modules/benchmarks/src:util_lib",
|
||||
"//modules/benchmarks/src/tree:util_lib",
|
||||
|
@ -8,8 +8,6 @@ ng_module(
|
||||
srcs = glob(["*.ts"]),
|
||||
generate_ve_shims = True,
|
||||
tsconfig = "//modules/benchmarks:tsconfig-build.json",
|
||||
# TODO: FW-1004 Type checking is currently not complete.
|
||||
type_check = False,
|
||||
deps = [
|
||||
"//modules/benchmarks/src:util_lib",
|
||||
"//modules/benchmarks/src/tree:util_lib",
|
||||
|
Reference in New Issue
Block a user