1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 01:47:01 +03:00
semantic/semantic-typescript/BUILD.bazel
2020-06-30 23:59:18 -04:00

17 lines
421 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//:typescript/src/node-types.json",
)
semantic_language_parsing_test(language = "typescript")