Replies: 1 comment
-
We're currently in the process of refactoring our yeoman generator, see #954. I believe after that, the package would be in good shape to also support such a setup 👍 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be sweet if the generator could include a mode where it not only bootstraps a standalone LSP extension for VS Code, but also a TypeScript LSP plugin. This would be useful for adding syntax and type checking overlaid on TypeScript. For example, someone may want to add additional syntax checking inside of
html`<div />`
template strings, etc, and would want to connect it with TypeScript awareness.Another idea is adding additional type checks to TypeScript itself. For example
int
orfloat
types that are aliased tonumber
, but the TS LSP plugin can provide additional checks that validate if an int is being assigned to an int parameter, etc.I'm going to try making a TS LSP plugin myself sometime soon, can can help with this if someone else hasn't gotten to it yet.
Beta Was this translation helpful? Give feedback.
All reactions