-
-
Notifications
You must be signed in to change notification settings - Fork 44
typescript transpiler
Zeioth edited this page Aug 30, 2023
·
17 revisions
The typescript transpiler runs the command tsc to convert the files to javascript, and then it run the entry point using node.

- By using a
.solution.tomlfile, you can pass custom arguments totscif you want. - We don't recommend you having a
tsconfig.jsonfile in your working directory if you are gonna use thebuild solutionoption (it's redundant). - But if you have to, make sure you set
arguments = "". The reason is the arguments defined in.solution.tomlprevail over the ones defined intsconfig.json.