Use JSX in display names of the TypeScript React and JavaScript React languages (#168368)

Use JSX in display names of the TypeScript React and JavaScript React languages

Fixes #138285

This changes the display name of the languages `JavaScript React` -> `JavaScript JSX` and `TypeScript React` -> `TypeScript JSX`

This only changes the display names and leaves the ids alone. Changing the ids would be a very breaking change for extensions with no real user benefits
This commit is contained in:
Matt Bierner
2022-12-07 15:56:04 -08:00
committed by GitHub
parent 1c89f079be
commit 9ad5c4a205
2 changed files with 2 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
{ {
"id": "javascriptreact", "id": "javascriptreact",
"aliases": [ "aliases": [
"JavaScript JSX",
"JavaScript React", "JavaScript React",
"jsx" "jsx"
], ],

View File

@@ -31,6 +31,7 @@
{ {
"id": "typescriptreact", "id": "typescriptreact",
"aliases": [ "aliases": [
"TypeScript JSX",
"TypeScript React", "TypeScript React",
"tsx" "tsx"
], ],