Answers for "node compile typescript to javascript"

0

how to compile typescript to javascript es6

Run $tsc —init (in the folder containing the typescript file to compile)
(this creates a tsconfig.json file which has a bunch of json settings)
Navigate to tsconfig.json
 and 
Change from “target”: “es5”  to “target”: “es6”
Recompile the typescript file by tsc index and the index.js file will have es
Posted by: Guest on November-17-2021

Code answers related to "node compile typescript to javascript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language