Run it as a background process. For example, if you're using bash:
tsc -w &
If you want to suppress the output:
tsc -w &>/dev/null &
Though this means if there are any errors, you won't see them. You could pipe the output to a file instead of /dev/null so that you could always less or tail the file anytime you needed to check what's up.