Skip to content

Commit

Permalink
Add .mts and .cts to TypeScript file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
kidonng authored and sharkdp committed Sep 4, 2022
1 parent 48541b8 commit d7b6519
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- Update `Command Help` syntax, see #2255
- `Julia`: Fix syntax highlighting for function name starting with `struct`, see #2230
- Minor update to `LiveScript`, see #2291
- Associate `.mts` and `.cts` files with the `TypeScript` syntax. See #2236 (@kidonng)

## Themes

Expand Down
2 changes: 2 additions & 0 deletions assets/syntaxes/02_Extra/TypeScript.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
name: TypeScript
file_extensions:
- ts
- mts
- cts
scope: source.ts
contexts:
main:
Expand Down
1 change: 1 addition & 0 deletions tests/syntax-tests/highlighted/TypeScript/example.cts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const dummy: string = "Regression test for https://github.com/sharkdp/bat/pull/2236";
1 change: 1 addition & 0 deletions tests/syntax-tests/source/TypeScript/example.cts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const dummy: string = "Regression test for https://github.com/sharkdp/bat/pull/2236";

0 comments on commit d7b6519

Please sign in to comment.