I created a tsc.exe from tsc.js using nexe:
npm install -g nexe
nexe tsc.js --build
The resulting tsc.exe accepts the same parameters as tsc.js, but how to pass parameters to the underlying node engine? I would like to run something like this:
node --trace-warnings tsc.js ...
How do I do it with the created tsc.exe ?