I am trying to run the TypeScript compiler from my Java application. To start, I'm trying to figure out if I can run the compiler from the command line without Node.js:
$ jsc tsc.js
But in this way I do not get any errors and do not help.
$ jsc tsc.js myscript.ts
It will not give anything.
It's easy to run js code directly from java (and I hope to run this compiler this way), but is it possible to run the TypeScript compiler without Node.js?
EDIT:
I confirm the same behavior with a rhino.
source share