Getting error in IE 11.162 v.:

In Firefox and Chrome everything works fine. Any ideas?
I can confirm this.
Bundled apps don't seem to have this problem.
Having the same issue. Problem existed before, but updating to the latest and greatest version of Aurelia (despite JSPM 0.17 - working with 0.16.32 for now), did not solve the issue. My bundled version also has this issue.
"Error: Out of stack space
at Collection (eval code:20772:9)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)"
I'm seeing this issue in Edge too but only when the debugger isn't attached.
Open F12 and the page loads.
+1
:+1:
So what about this issue?
Currently we have ie-incompatible application at production(edge works fine).
Maybe some workarounds?
@vkomodey I got this error because SystemJS was doing on the fly transpilation. In this app I need systemjs to do that but it may be different for you. Check if the transpiler is disabled here. If it is not, try and disable it and see which files it crashes on.
@JeroenVinke
I have the same issue with my bundled application(but only stack overflow error without details)
So temporary workaraund here is import core-js and only then aurelia-bootstrapper.(from [here])(https://github.com/aurelia/polyfills/issues/16)
System.import('core-js').then(function() {
System.import('aurelia-bootstrapper');
});
@JeroenVinke , thanks, that did the trick for me.
This issue is somewhat redundant given this is related to a pre Babel v6 runtime, things have changed since then. I think this can be closed @EisenbergEffect
Most helpful comment
@JeroenVinke
I have the same issue with my bundled application(but only stack overflow error without details)
So temporary workaraund here is import
core-jsand only thenaurelia-bootstrapper.(from [here])(https://github.com/aurelia/polyfills/issues/16)