Skip to content
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

Incremental compilation #28

Closed
danbroun opened this issue Dec 2, 2013 · 1 comment
Closed

Incremental compilation #28

danbroun opened this issue Dec 2, 2013 · 1 comment

Comments

@danbroun
Copy link

danbroun commented Dec 2, 2013

Hi,

is it possible to enable incremental compilation?

@basarat
Copy link
Member

basarat commented Dec 2, 2013

is it possible to enable incremental compilation?

The plan is the have a boolean option fast which when set will try to compile the changed files silently before it jumps to compiling the entire project. Reason for silent compile: The individual files will probably fail to compile unless they have an explicit reference to all the files it needs. If you use the all refernece file trick the time to compile your single file will not be very different from compiling the reference file. So this is why you need to not reference any files yourself. Let ts compile fail but give you valid js, then let ts compile verify that the entire project still builds.

That said, I haven't started work on this.

@basarat basarat added this to the Fast Compliation milestone Mar 12, 2014
@basarat basarat closed this as completed Mar 15, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants