Can someone help clarify something about this TypeScript plugin for SystemJS?
https://github.com/frankwallis/plugin-typescript/
Here is what the plugin does:
This SystemJS plugin allows you to import TypeScript files directly and have them compiled in the browser, with compilation errors displayed in the console.
I'm curious about the potential use cases for using this plugin.
- Why would developers choose to import .ts files directly and compile them in the browser instead of compiling them beforehand and importing .js files?
- Wouldn't compiling in the browser impact performance and loading times?
- Is this plugin intended only for use in development environments?