tree-sitter-typescript

TypeScript grammar for tree-sitter


Keywords
library, tree-sitter, typescript, Propose Tags , TreeSitter.TypeScript, parser
License
BSD-3-Clause
Install
cabal install tree-sitter-typescript-v0.4.4

Documentation

tree-sitter-typescript

CI Discord Rust Crate Node Package

TypeScript and TSX grammars for tree-sitter.

Because TSX and TypeScript are actually two different dialects, this module defines two grammars. Require them as follows:

require("tree-sitter-typescript").typescript; // TypeScript grammar
require("tree-sitter-typescript").tsx; // TSX grammar

For Javascript files with flow type annotations you can use the the tsx parser.

References