Replies: 2 comments
-
I have benchmarked a few competitors and I don't think I can avoid Typescript ^^ |
Beta Was this translation helpful? Give feedback.
0 replies
-
I finally merged my TS branch. I think 95% of the work is done but as I'm new to this I may have made some mistakes in the process. ^^ |
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
-
Typescript is where the industry is moving. I build all my projects in Typescript because the benefits outweigh the drawbacks. It helps with refactoring, you also have better suggestions in IDEs and final it makes refactoring a breeze.
You can also catch bugs earlier and you know what the data structure of a variable/parameter is when using them in your UI.
I will not consider using a library/template that is not written in Typescript.
As an alternative, you could have two projects, one in TS and one in JS. If you see that one of the two does not sell well, then you can kill it and focus on your best seller version whether it is JS or TS. This way the market will tell you which one to choose.
Beta Was this translation helpful? Give feedback.
All reactions