Replies: 4 comments
-
Same question here and extending the question to include the "TypeScript Compiler API". I think transformers are nowadays an important part of the TS ecosystem. AFAIK toolkits like Angular and React use it under-the-hood. I also use the TypeScript Compiler API a lot to do code transformations. Heck, I even transpile my whole TypeScript library to native C# and Kotlin using this API beside doing some code generation like for serializers. 🤣 |
Beta Was this translation helpful? Give feedback.
-
Some use cases that might be popular are styled components and the next JS plugin also. |
Beta Was this translation helpful? Give feedback.
-
There are some comments about this topic in another discussion |
Beta Was this translation helpful? Give feedback.
-
this is quite important for the roblox-ts ecosystem |
Beta Was this translation helpful? Give feedback.
-
Currently lsp plugins and especially transformer plugins is not very popular but there is a lot of quite interesting project which utilizing transformation and type checking typescript api's, for example:
Transformer plugins are not a part of official typescript api, but it would be really great if there are plans to support it in this project in some way. Would be great to have some sort of bindings to the native code, or even better - carefully designed (as always) api for transformer plugins (maybe even on go?)
Beta Was this translation helpful? Give feedback.
All reactions