Skip to content

Instantly share code, notes, and snippets.

@shortthirdman
Created June 3, 2017 09:18
Show Gist options
  • Save shortthirdman/791a7c2aacf375e3dc1efe27b7a7e9c1 to your computer and use it in GitHub Desktop.
Save shortthirdman/791a7c2aacf375e3dc1efe27b7a7e9c1 to your computer and use it in GitHub Desktop.
TSConfig for Angular 2 and Angular 4 TypeScript
{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"module": "system",
"declaration": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "es2015", "dom"],
"sourceMap": false,
"pretty": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"typeRoots": [
"./node_modules/@types",
"./node_modules"
],
"types": [ "node", "core-js", "jasmine" ]
},
"exclude": [ "node_modules", "build", "src" ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment