1
1
mirror of https://github.com/github/semantic.git synced 2024-11-23 16:37:50 +03:00
semantic/semantic-typescript/BUILD.bazel
2020-07-08 16:58:30 -04:00

17 lines
451 B
Python

package(default_visibility = ["//visibility:public"])
load(
"//:build/common.bzl",
"semantic_language_library",
"semantic_language_parsing_test",
)
semantic_language_library(
name = "semantic-typescript",
srcs = glob(["src/**/*.hs"]),
language = "typescript",
nodetypes = "@tree-sitter-typescript//:vendor/tree-sitter-typescript/typescript/src/node-types.json",
)
semantic_language_parsing_test(language = "typescript")