Revision d03317677418aa7936986ba6c4ec698621c15e7b authored by Olivier Combe on 16 August 2017, 14:10:17 UTC, committed by Miško Hevery on 17 August 2017, 02:56:34 UTC
1 parent 5dd1744
Raw File
BUILD
package(default_visibility = ["//visibility:public"])
exports_files(["tsconfig.json"])

# This rule belongs in node_modules/BUILD
# It's here as a workaround for
# https://github.com/bazelbuild/bazel/issues/374#issuecomment-296217940
filegroup(
    name = "node_modules",
    srcs = glob([
        # Performance workaround: list individual files
        # This won't scale in the general case.
        # TODO(alexeagle): figure out what to do
        "node_modules/typescript/**",
        "node_modules/zone.js/**/*.d.ts",
        "node_modules/rxjs/**/*.d.ts",
        "node_modules/@types/**/*.d.ts",
    ]),
)
back to top