Skip to content

Instantly share code, notes, and snippets.

@somehybrid
Last active November 8, 2021 04:35
Show Gist options
  • Save somehybrid/f534c205220aead55a22ef7427495513 to your computer and use it in GitHub Desktop.
Save somehybrid/f534c205220aead55a22ef7427495513 to your computer and use it in GitHub Desktop.
Automatically runs and compiles a typescript file (requirements: node.js, typescript)
:: For Windows
tsc %1
node %1
del %1
# for mac and linux
typescript() {
tsc "$1"
node "$1"
rm "$1.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment