From c8c0ceeee9ca039bb44be43a33021801865dba6b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 9 Jun 2017 18:32:36 -0700 Subject: [PATCH] build(bazel): fix the typescript path in the BUILD file (#17316) --- BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD b/BUILD index 11438eec58..488214e115 100644 --- a/BUILD +++ b/BUILD @@ -10,7 +10,7 @@ filegroup( # Performance workaround: list individual files # This won't scale in the general case. # TODO(alexeagle): figure out what to do - "node_modules/typescript/lib/**", + "node_modules/typescript/**", "node_modules/zone.js/**/*.d.ts", "node_modules/rxjs/**/*.d.ts", "node_modules/@types/**/*.d.ts",