Add Tailwind server to TSX

This commit is contained in:
Julia 2023-08-28 11:56:44 -04:00
parent ded6decb29
commit 35b7787e02
3 changed files with 6 additions and 1 deletions

View file

@ -103,6 +103,7 @@ impl LspAdapter for TailwindLspAdapter {
"html": "html",
"css": "css",
"javascript": "javascript",
"typescriptreact": "typescriptreact",
},
}))
}
@ -122,6 +123,7 @@ impl LspAdapter for TailwindLspAdapter {
("HTML".to_string(), "html".to_string()),
("CSS".to_string(), "css".to_string()),
("JavaScript".to_string(), "javascript".to_string()),
("TSX".to_string(), "typescriptreact".to_string()),
]
.into_iter(),
)