The Angular2 demo uses Traceur and System.JS to implement ES6 module syntax. Since Typescript 1.5 now includes this syntax, is the separate ES6 module loader still required? Any ideas of how to do without it?
<head>
<title>Angular 2 Quickstart</title>
<script src="https://github.jspm.io/jmcriffey/[email protected]/traceur-runtime.js"></script>
<script src="https://jspm.io/[email protected]"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.28/angular2.dev.js"></script>
</head>
<my-app></my-app>
<script>System.import('app');</script>