Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to build an application with TypeScript? [closed]

Tags:

How do you build a Meteor application with TypeScript?

like image 531
Warz Avatar asked Jun 10 '13 22:06

Warz


People also ask

Can I use TypeScript in front end?

TypeScript is compiled to JavaScript. Therefore, TS can be used anywhere JS could be used: both the frontend and the backend. JavaScript is the most popular language to implement scripting for the frontend of apps and web pages.

Is TypeScript still relevant?

According to Stack Overflow's 2021 Developer Survey, TypeScript is about as popular as PYPL indicates it is, coming in as the seventh most popular language, as ranked by approximately 83,000 developers.


1 Answers

Please add meteor typescript compiler to your project. it compiles .ts artifacts on the fly using the tsc command line (batch mode)

The package source is available via GitHub. You may also add the plugin directly by typing meteor add meteortypescript:compiler from your project root directory.

like image 107
Olivier Refalo Avatar answered Oct 23 '22 21:10

Olivier Refalo