Skip to content

Instantly share code, notes, and snippets.

@backmeupplz
Created November 26, 2018 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save backmeupplz/f9f462cd86b524719375aca917e74682 to your computer and use it in GitHub Desktop.
Save backmeupplz/f9f462cd86b524719375aca917e74682 to your computer and use it in GitHub Desktop.
Sample tsc config
{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"lib": ["es2015"],
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*", "src/types/*"]
},
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"include": ["src/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment