hmm: AngularJS 2 ich komm net rein

Beitrag lesen

<html>
  <head>
    <title>Angular 2 QuickStart</title>
    <script src="node_modules/systemjs/dist/system.src.js"></script>
    <script src="node_modules/typescript/lib/typescript.js"></script>
    <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
    <script>
      System.config({
        transpiler: 'typescript',
      });
      System.import('app.ts');
    </script>
  </head>
  <body>
    <my-app>loading...</my-app>
  </body>
</html>

braucht diese indexdatei nur ein "npm start" oder ähnliches um zu funktionieren? die index.html scheint sich auch ohne irgendwelche startbefehle die ts datei zu holen, ist dass so gedacht?