Skip to content

Instantly share code, notes, and snippets.

@gingters
Created April 4, 2017 09:00
Show Gist options
  • Save gingters/68bfb5d0cd74fdef66e52c4d6f3502ee to your computer and use it in GitHub Desktop.
Save gingters/68bfb5d0cd74fdef66e52c4d6f3502ee to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compileOnSave": false,
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
],
"noImplicitAny": false,
"noImplicitReturns": true,
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "../dist",
"baseUrl": ""
},
"files": [
"index.ts"
],
"exclude": [
"../node_modules/**/*"
],
"angularCompilerOptions": {
"skipTemplateCodege": true,
"genDir": "../compiled"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment