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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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