If I wanted to use a `.ts` file as an entrypoint, wouldn't I want to have a hashbang that indicates such? For nodejs scripts, you put this at the top of the file: ``` #!/usr/bin/env node ``` Wouldn't it then make sense to have; ``` #!/usr/bin/env ts-node ``` ???
If I wanted to use a
.tsfile as an entrypoint, wouldn't I want to have a hashbang that indicates such?For nodejs scripts, you put this at the top of the file:
Wouldn't it then make sense to have;
???