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
Currently the TypeScript compiler gets called by npm-postinstall.js after npm install in order to automatically create the JS files at startup. This is done via Nodes child_process.exec() utility. On Linux all commands passed to this function are executed within the sh shell. So this call (obviously) fails:
/bin/sh -c ./node_modules/.bin/tsc
No information about behavior on Windows, yet.
The text was updated successfully, but these errors were encountered:
Currently the TypeScript compiler gets called by
npm-postinstall.js
afternpm install
in order to automatically create the JS files at startup. This is done via Nodeschild_process.exec()
utility. On Linux all commands passed to this function are executed within thesh
shell. So this call (obviously) fails:No information about behavior on Windows, yet.
The text was updated successfully, but these errors were encountered: