From 7a75f7805c2bf238c4bce041ad312733695448f6 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Thu, 1 Aug 2019 09:51:57 +0100 Subject: [PATCH] build(core): add missing tsconfig-build.json dependency (#31943) For some reason (on OS/X) this transitive dependency is not being passed through to the final TS builds that rely on this rule, so the build fails with a missing file error: ``` The specified path does not exist: '/.../sandbox/darwin-sandbox/451/execroot/angular/packages/tsconfig-build.json'. ``` PR Close #31943 --- packages/core/test/strict_types/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/test/strict_types/BUILD.bazel b/packages/core/test/strict_types/BUILD.bazel index ca42c4422d..3412b43966 100644 --- a/packages/core/test/strict_types/BUILD.bazel +++ b/packages/core/test/strict_types/BUILD.bazel @@ -7,6 +7,7 @@ ts_config( name = "tsconfig", src = "tsconfig.json", deps = [ + "//packages:tsconfig-build.json", "//packages:tsconfig-test", ], )