Last active
February 28, 2017 08:21
-
-
Save squadwuschel/f16cec0aa35920bb99dead888b0de623 to your computer and use it in GitHub Desktop.
Angular 2 "Hello World" tsconfig.json Einstellungen
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": "commonjs", | |
"moduleResolution": "node", | |
"sourceMap": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"removeComments": false, | |
"noImplicitAny": false, | |
//Kümmert sich um die Typings das diese entsprechend gefunden werden, keine Reference mehr in boot.js notwendig. | |
"lib": [ "es5", "es2015", "dom", "es2015.promise" ] | |
}, | |
"exclude": [ | |
"node_modules", | |
"dist", | |
"typings/main", | |
"typings/index.d.ts" | |
], | |
"compileOnSave": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment