From 38e9eae2d5144d81dfb13278629007ce2ec4efb5 Mon Sep 17 00:00:00 2001 From: Alexis Lapierre <128792625+Alexis-Lapierre@users.noreply.github.com> Date: Fri, 24 Mar 2023 10:05:17 +0100 Subject: [PATCH] Recognize .cts and .mts file type as TypeScript TypeScript can use three type of file extensions: - .ts for regular TypeScript - .cts for CommonJS modules - .mts for ES modules Official documentation on supported file extensions: https://www.typescriptlang.org/docs/handbook/esm-node.html#new-file-extensions --- languages.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages.toml b/languages.toml index 2bf9218e5128..670f3adf9f2e 100644 --- a/languages.toml +++ b/languages.toml @@ -453,7 +453,7 @@ includeInlayVariableTypeHints = true name = "typescript" scope = "source.ts" injection-regex = "(ts|typescript)" -file-types = ["ts"] +file-types = ["ts", "mts", "cts"] shebangs = [] roots = [] # TODO: highlights-params