I'm using angular including from script tag like:
<html>
<head>
<title>Angular 2 tsconfig.json Demo</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.22/angular2.dev.js"></script>
</head>
<body>
<welcome></welcome>
<script>System.import("app");</script>
</body>
</html>
Is there any way of avoiding script inclusion, and download my dependencies to node_modules folder with my compiled .js and typescript definition file .d.ts, include it and build it?