-
-
Notifications
You must be signed in to change notification settings - Fork 38
typescript transpiler
Zeioth edited this page Aug 30, 2023
·
17 revisions
The typescript transpiler convert your code to javascript using tsc
and then it run it with node. This can be used to develop standalone typescript applications (which doesn't mean you should, but some times it's useful).
- By using a
.solution.toml
file, you can pass custom arguments totsc
if you want. - But if you are already using a
tsconfig.json
to pass the arguments totsc
, make sure you setarguments = ""
in your.solution.toml
file because the arguments will prevail over anything you set on thetsconfig.json
file.