I am using hot.accept in the root of my application, and so far it's worked brilliantly.
var hot = (<any>module).hot;
if (hot) {
hot.accept();
}
However, since I migrated to Angular 2 RC5, and use their module system, I have run into issues. Specifically the issue I run into is with the ReactiveFormsModule
in "@angular/forms".
Having this in my application breaks HMR for my entire application. How do I account for this third party module and make sure it gets accepted?