Question regarding Angular 2 Beta: I am starting off with a general overview in the hopes that this issue is already recognized, and I simply overlooked something during my research. Initially, when Angular 2 Beta.0 was released, I managed to run a basic module in my application using IE10. It displayed "My first module" as expected.
However, upon trying the same code with Angular 2 Beta.1, I encountered the following error, which persists in Angular2 2.0.0-beta.2 & angular2 2.0.0-beta.3:
EXCEPTION: SyntaxError: Expected ';'
STACKTRACE:
SyntaxError: Expected ';'
at evalExpression (.../js/angular/angular2/bundles/angular2.dev.js:452:5)
at _createViewFactoryRuntime (.../js/angular/angular2/bundles/angular2.dev.js:24190:9)
at Anonymous function (.../js/angular/angular2/bundles/angular2.dev.js:24144:13)
(and so on...)
(Additional stack trace details may be available)
The JavaScript files being loaded for all versions of Angular 2 Beta are:
<script src="js/angular/es6-shim/es6-shim.min.js"></script>
<script src="js/angular/systemjs/dist/system-polyfills.js"></script>
(and more...)
Update: Sample code snippets from boot.ts and counts.component.ts are provided above for reference.
Initial HTML structure includes script tags to configure SystemJS and display the application.
In conclusion, I am seeking assistance to resolve this known issue or any guidance you can provide based on your expertise. Please let me know if additional information is needed. Thank you!