I'm pretty new with Angular and systemjs, but I'll try to be more specific as possible.
I'm working with angularjs2 and typescript. I compile my .ts files with a tsconfig.json. Here is my config:
Next, I want to bootstrap my application through my index.html with systemjs. But my import doesn't accept init without extension (below, my init, that actually work) :
    System.config({
        transpiler: 'typescript'
    });
    System.import('src/app.ts');
I'm forced to mention the .ts extension (same problem in ts files when I want to import handmade components).
Am I forgetting something? Documentation is a bit rough for beginners concerning first configurations.
Moreover, I've got all my scripts called in <head> (system.js, typescript.js, angular2.dev.js)




