You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now this doesn't really play nice together with systemjs and it works for me only when manually moving the var __decorate and var __metadata declarations into the anonymous function function(exports_1) { ..here... }. Not sure if it's really valid to have these variable declarations outside of the System.register.
The text was updated successfully, but these errors were encountered:
It seems like these declarations outside of System.register are crashing the format detection of systemjs. When adding manually a meta override as workaround like the following it's working again.
Hi, I'm using TSC 1.5.3 (latest head) and I'm trying to compile following piece of code
which will then produce following code
Now this doesn't really play nice together with systemjs and it works for me only when manually moving the
var __decorate
andvar __metadata
declarations into the anonymous functionfunction(exports_1) { ..here... }
. Not sure if it's really valid to have these variable declarations outside of theSystem.register
.The text was updated successfully, but these errors were encountered: