Skip to content

Instantly share code, notes, and snippets.

@wilk
Created December 12, 2016 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wilk/98cb1f19dd5f1859b2671556c9e3b376 to your computer and use it in GitHub Desktop.
Save wilk/98cb1f19dd5f1859b2671556c9e3b376 to your computer and use it in GitHub Desktop.
tsconfig
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": [
"es5",
"es6"
],
"outDir": "build",
"removeComments": true,
"watch": true
},
"exclude": [
"node_modules"
],
"include": [
"src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment