build: fix type-check errors introduced during rules_ts 0.21 (#27586)

PR Close #27586
This commit is contained in:
Alex Eagle
2018-12-10 14:36:45 -08:00
committed by Alex Rickabaugh
parent bf57e9d781
commit 50687e11cf
7 changed files with 15 additions and 1 deletions

View File

@ -6,6 +6,7 @@ ts_library(
srcs = glob(["**/*.ts"]),
deps = [
"//packages:types",
"//packages/compiler",
"//packages/compiler/testing",
"//packages/core/testing",
"//packages/platform-browser",

View File

@ -6,8 +6,11 @@ ts_library(
srcs = glob(["**/*.ts"]),
deps = [
"//packages:types",
"//packages/compiler",
"//packages/compiler/testing",
"//packages/core/testing",
"//packages/platform-browser",
"//packages/platform-browser/testing",
],
)