Has anyone got .tsx files working with typescript-language-server for React?
Here’s my current configuration in an attempt to get it working
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"LSP":
{
"typescript-language-server":
{
"enabled": true,
"scopes": [
"source.tsx"
],
"languageId": "typescriptreact",
"syntaxes": [
"Packages/JavaScript/JavaScript.sublime-syntax",
"Packages/TypeScript Syntax/TypeScriptReact.tmLanguage"
]
}
}
}
}