I am new to angular js. I followed the documents on my website on how to create an angular 2 application, but the problem is that all the files .jsstill live in the same file directory .ts, which will be very problematic if my application grows or has many .ts files. How can I be sure after compilation, it will be placed in a directory distwithout using angular cli? Because he tried angular cli, it is very slow. It takes a minute to reflect simple changes in my file.
How can I use a directory structure like this:
distance
- index.html
- Myapp-component.js
- another.js - etc.
CSI
- index.html
- myapp.component.ts
- another.ts - etc.
and / or if you can minimize or make the js file into just 1 large .js file.
/ angular js dist/library node_modules.