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.
This commit is contained in:
Ye-hyoung Kang
2020-07-28 05:12:42 +09:00
committed by GitHub
parent 4c145dbb40
commit fcc2a4935e

View File

@@ -45,7 +45,9 @@
],
"filenamePatterns": [
"tsconfig.*.json",
"tsconfig-*.json"
"jsconfig.*.json",
"tsconfig-*.json",
"jsconfig-*.json"
]
}
],