Skip to content

Commit

Permalink
Added TypeScript language support
Browse files Browse the repository at this point in the history
  • Loading branch information
codemakerai-dev committed Jun 13, 2023
1 parent 1d73eac commit 9a6e1f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ Fallowing operations are supported:
Following programming languages are supported:

* JavaScript
* JSX
* TypeScript
* TSX
* Java
* Go
* Kotlin
Expand Down
2 changes: 2 additions & 0 deletions cli/language.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
var fileExtensions = map[string]string{
".js": client.LanguageJavaScript,
".jsx": client.LanguageJavaScript,
".ts": client.LanguageTypeScript,
".tsx": client.LanguageTypeScript,
".java": client.LanguageJava,
".go": client.LanguageGo,
".kt": client.LanguageKotlin,
Expand Down

0 comments on commit 9a6e1f6

Please sign in to comment.