Skip to content

Commit 1421eff

Browse files
IgorMinarmhevery
authored andcommitted
build: re-enable template type-checking for various targets across the repo (angular#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 angular#34144
1 parent d8792b3 commit 1421eff

File tree

38 files changed

+14
-79
lines changed

38 files changed

+14
-79
lines changed

modules/benchmarks/src/largeform/ng2/BUILD.bazel

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ ng_module(
99
name = "ng2",
1010
srcs = glob(["*.ts"]),
1111
generate_ve_shims = True,
12-
# FIXME-IVY(FW-998): ExpressionTranslatorVisitor#visitWriteKeyExpr is not implemented.
13-
tags = ["fixme-ivy-aot"],
1412
tsconfig = "//modules/benchmarks:tsconfig-build.json",
15-
# TODO: FW-1004 Type checking is currently not complete.
16-
type_check = False,
1713
deps = [
1814
"//modules/benchmarks/src:util_lib",
1915
"//packages/core",
@@ -36,13 +32,11 @@ ts_devserver(
3632
"//tools/rxjs:rxjs_umd_modules",
3733
],
3834
static_files = ["index.html"],
39-
tags = ["fixme-ivy-aot"],
4035
deps = [":ng2"],
4136
)
4237

4338
benchmark_test(
4439
name = "perf",
4540
server = ":devserver",
46-
tags = ["fixme-ivy-aot"],
4741
deps = ["//modules/benchmarks/src/largeform:tests_lib"],
4842
)

modules/benchmarks/src/largetable/ng2/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ ng_module(
1111
srcs = glob(["*.ts"]),
1212
generate_ve_shims = True,
1313
tsconfig = "//modules/benchmarks:tsconfig-build.json",
14-
# TODO: FW-1004 Type checking is currently not complete.
15-
type_check = False,
1614
deps = [
1715
"//modules/benchmarks/src:util_lib",
1816
"//modules/benchmarks/src/largetable:util_lib",

modules/benchmarks/src/largetable/ng2_switch/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ ng_module(
88
srcs = glob(["*.ts"]),
99
generate_ve_shims = True,
1010
tsconfig = "//modules/benchmarks:tsconfig-build.json",
11-
# TODO: FW-1004 Type checking is currently not complete.
12-
type_check = False,
1311
deps = [
1412
"//modules/benchmarks/src:util_lib",
1513
"//modules/benchmarks/src/largetable:util_lib",

modules/benchmarks/src/tree/ng2/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ ng_module(
1111
srcs = glob(["*.ts"]),
1212
generate_ve_shims = True,
1313
tsconfig = "//modules/benchmarks:tsconfig-build.json",
14-
# TODO: FW-1004 Type checking is currently not complete.
15-
type_check = False,
1614
deps = [
1715
"//modules/benchmarks/src:util_lib",
1816
"//modules/benchmarks/src/tree:util_lib",

modules/benchmarks/src/tree/ng2_switch/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ ng_module(
88
srcs = glob(["*.ts"]),
99
generate_ve_shims = True,
1010
tsconfig = "//modules/benchmarks:tsconfig-build.json",
11-
# TODO: FW-1004 Type checking is currently not complete.
12-
type_check = False,
1311
deps = [
1412
"//modules/benchmarks/src:util_lib",
1513
"//modules/benchmarks/src/tree:util_lib",

modules/playground/src/animate/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ ng_module(
77
srcs = glob(["**/*.ts"]),
88
assets = glob(["**/*.css"]),
99
tsconfig = "//modules/playground:tsconfig-build.json",
10-
# TODO: FW-1004 Type checking is currently not complete.
11-
type_check = False,
1210
deps = [
1311
"//packages/animations",
1412
"//packages/core",

modules/playground/src/async/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ng_module(
66
name = "async",
77
srcs = glob(["**/*.ts"]),
88
tsconfig = "//modules/playground:tsconfig-build.json",
9-
# TODO: FW-1004 Type checking is currently not complete.
10-
type_check = False,
119
deps = [
1210
"//packages/core",
1311
"//packages/platform-browser",

modules/playground/src/gestures/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ ng_module(
77
srcs = glob(["**/*.ts"]),
88
assets = ["template.html"],
99
tsconfig = "//modules/playground:tsconfig-build.json",
10-
# TODO: FW-1004 Type checking is currently not complete.
11-
type_check = False,
1210
deps = [
1311
"//packages/core",
1412
"//packages/platform-browser",

modules/playground/src/hello_world/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ng_module(
66
name = "hello_world",
77
srcs = glob(["**/*.ts"]),
88
tsconfig = "//modules/playground:tsconfig-build.json",
9-
# TODO: FW-1004 Type checking is currently not complete.
10-
type_check = False,
119
deps = [
1210
"//packages/core",
1311
"//packages/platform-browser",

modules/playground/src/http/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ng_module(
66
name = "http",
77
srcs = glob(["**/*.ts"]),
88
tsconfig = "//modules/playground:tsconfig-build.json",
9-
# TODO: FW-1004 Type checking is currently not complete.
10-
type_check = False,
119
deps = [
1210
"//packages/core",
1311
"//packages/http",

0 commit comments

Comments
 (0)