You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
even transpiling 1 file takes about 1.5 seconds. Is there anyway I could somehow speed this up? the only thing I can think of is to have tsc be already running as a server and send it an ipc or socket message.
The problem with using tsc --watch is that I need to add a hook, such that when tsc is done with a transpilation I can run some other code. I would be happy to use tsc --watch to speed this up but I don't know how in this case.
The text was updated successfully, but these errors were encountered:
I have this line of code in Node.js which sends stdin to a bash child process
even transpiling 1 file takes about 1.5 seconds. Is there anyway I could somehow speed this up? the only thing I can think of is to have
tsc
be already running as a server and send it an ipc or socket message.The problem with using
tsc --watch
is that I need to add a hook, such that when tsc is done with a transpilation I can run some other code. I would be happy to usetsc --watch
to speed this up but I don't know how in this case.The text was updated successfully, but these errors were encountered: