File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ const (
2222 Elixir = "elixir"
2323 Go = "go"
2424 Javascript = "javascript"
25+ TypeScript = "typescript"
2526 Lua = "lua"
2627 OCaml = "ocaml"
2728 Perl = "perl"
@@ -65,6 +66,10 @@ var Languages = map[string]Language{
6566 Extension : "js" ,
6667 Commands : cmds {{"node" , "<file>" }},
6768 },
69+ TypeScript : {
70+ Extension : "ts" ,
71+ Commands : cmds {{"ts-node" , "<file>" }},
72+ },
6873 Lua : {
6974 Extension : "lua" ,
7075 Commands : cmds {{"lua" , "<file>" }},
@@ -123,10 +128,10 @@ var Languages = map[string]Language{
123128 },
124129 Scala : {
125130 Extension : "sc" ,
126- Commands : cmds {{"scala-cli" , "run" , "<file>" }},
131+ Commands : cmds {{"scala-cli" , "run" , "<file>" }},
127132 },
128133 Haskell : {
129134 Extension : "hs" ,
130- Commands : cmds {{"runghc" , "<file>" }},
135+ Commands : cmds {{"runghc" , "<file>" }},
131136 },
132137}
You can’t perform that action at this time.
0 commit comments