Is there a way to compile a TypeScript file (.ts) in the sublime text 3 console and display the output similarly to how sublime handles Python? Since TypeScript is a compiled language, it needs to convert the .ts file to a .js file before execution. How can this be achieved?
I attempted to install the TypeScript plugin from the sublime package installer, but it required a specific architecture to run the file, as detailed here. Additionally, this post did not provide instructions on running a standalone TypeScript file, only on building after saving.