Skip to content

Instantly share code, notes, and snippets.

@squadwuschel
Last active February 28, 2017 08:21
Show Gist options
  • Save squadwuschel/f16cec0aa35920bb99dead888b0de623 to your computer and use it in GitHub Desktop.
Save squadwuschel/f16cec0aa35920bb99dead888b0de623 to your computer and use it in GitHub Desktop.
Angular 2 "Hello World" tsconfig.json Einstellungen
{
"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