-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compile on save vs build #222
Comments
We don't have good support for out as I don't personally use or recommend using it. Tracked here : #206 |
That's too bad. Just out of curiosity, if you don't use --out, then what's your workflow for using multiple .ts files? If you're using Atom, how do you keep a list of js files current in your HTML markup? |
Use external modules.
Don’t. Use an AMD loader. |
@abogartz I've documented my reasons for not doing Based on that I'll marking this explicitly as We can provide an |
Perhaps my config is just not set up correctly, but I have my tsconfig file set up as follows.
Main.ts has references in it to other classes, e.g "a.ts" with class A.
If I make a change to a.ts, the "save on compile" command triggers, but the resulting js file doesn't seem to have all of the Typescript code such as the __extends function. However, if I run a "build" from the package, then the resulting js is correct.
The text was updated successfully, but these errors were encountered: