I am using angular2 with typescript in Visual Studio 2015.I am getting exception RangeError: Maximum call stack size exceeded in angular2
Why i am getting this exception and how can i solve this.
I am using angular2 with typescript in Visual Studio 2015.I am getting exception RangeError: Maximum call stack size exceeded in angular2
Why i am getting this exception and how can i solve this.
Might not have been your issue, but worth mentioning. I was getting the same error with RC5. It took a bit before I realized that it stopped when I commented out one of my modules with the selector "footer". Well my footer.component.html template file of course uses the HTML5 <footer> tag. So because my selector was an HTML tag it was in infinite recursion. Seems obvious to think about now, but caused me some issues.