I have worked on several projects on react with typescript. On those projects I have seen some of them are using semicolon to mark the EOL, but some of them are not.
All the applications have no difference after building them as javascript (production build).
So are there any benefits of not using the semicolon in terms of the aspects:
- Use case related to language standard
- File size
- Compilation time
- Readability on IDEs/ Terminals
- Any other aspects?