Last active
May 1, 2016 16:47
-
-
Save 1dolinski/4d5288a6af0c644943dd2c8bc31b3c32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | app | |
| -- components | |
| -- models | |
| -- services | |
| main.ts | |
| app.component.ts | |
| | build | |
| - build.js | |
| - build.map.js | |
| index.html | |
| system.config | |
| tsconfig.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.config({packages: {app: {format: 'register', defaultExtension: 'ts'}}}); | |
| System.import('build/build.js') | |
| .then(null, console.error.bind(console)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| "target": "es5", | |
| "module": "system", | |
| "moduleResolution": "node", | |
| "sourceMap": true, | |
| "emitDecoratorMetadata": true, | |
| "experimentalDecorators": true, | |
| "removeComments": false, | |
| "noImplicitAny": true, | |
| "suppressImplicitAnyIndexErrors": true, | |
| "outFile":"./build/build.js", | |
| "rootDir": "./app/" | |
| }, | |
| "exclude": [ | |
| "node_modules", | |
| "typings/main", | |
| "typings/main.d.ts" | |
| ] | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment