I'm pretty new with Angular and systemjs, but I will try to be as specific as possible.
I work with angularjs2 and typescript. I will compile .ts files using tsconfig.json. Here is my configuration:

Next, I want to download my application through my index.html using systemjs. But my import does not accept init without an extension (below, my init, which really works):
System.config({ transpiler: 'typescript' }); System.import('src/app.ts');
I have to mention the .ts extension (the same problem in ts files when I want to import handmade components).
Did I forget something? The documentation is a bit rough for beginners regarding the first configurations.
Moreover, I have all my scripts named in <head> (system.js, typescript.js, angular2.dev.js)
angular systemjs
Karnaille
source share