EN
JavaScript / TypeScript - popular transpilers
5 points
In this short article, we would like to list popular JavaScript and TypeScript transpilers.
Example transpilers:
- Babel (provides TypeScript syntax plugin)
Babel is a JavaScript compiler that lets to use next generation JavaScript and convert it into desired versions (older commonly supported versions). It has plugin that lets to use TypeScript as input language. - TypeScript (supports JavaScript syntax also)
TypeScript is language that extends JavaScript by adding types to the language. There also is provided compiler into desired JavaScript version (older commonly supported versions). It allows to import and use JavaScript file whenallowJs
option is set totrue
.