Skip to content

Instantly share code, notes, and snippets.

@funkytaco
Forked from wilk/tsconfig.json
Created October 24, 2019 05:55
Show Gist options
  • Save funkytaco/39f198349872eb67e71062850270977b to your computer and use it in GitHub Desktop.
Save funkytaco/39f198349872eb67e71062850270977b 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