From fcc2a4935e6cd10395fd9bd6a97abdb628b76d4c Mon Sep 17 00:00:00 2001 From: Ye-hyoung Kang Date: Tue, 28 Jul 2020 05:12:42 +0900 Subject: [PATCH] Add filename patterns for jsconfig.json (#103360) Add alternative filename patterns for jsconfig.json that will be recognized as JSONC when opened. This mirrors the accepted filename patterns for tsconfig.json. --- extensions/typescript-basics/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extensions/typescript-basics/package.json b/extensions/typescript-basics/package.json index 6b8c281538e..e3120789cf6 100644 --- a/extensions/typescript-basics/package.json +++ b/extensions/typescript-basics/package.json @@ -45,7 +45,9 @@ ], "filenamePatterns": [ "tsconfig.*.json", - "tsconfig-*.json" + "jsconfig.*.json", + "tsconfig-*.json", + "jsconfig-*.json" ] } ],