Run your ts files as executables
- Run
npm install -g ts-shebang - Create a
typescriptfile with a shebang at the top:
#!/usr/bin/env ts-shebang
console.log('Hooray!');- Run
chmod +x {your typescript file}from your terminal to make it executable - Execute your
typescriptfile