Skip to content

Instantly share code, notes, and snippets.

@DevWurm
Created January 5, 2017 15:00
Show Gist options
  • Save DevWurm/e013f05e333876daa867d18931e1c850 to your computer and use it in GitHub Desktop.
Save DevWurm/e013f05e333876daa867d18931e1c850 to your computer and use it in GitHub Desktop.
TypeScript configuration for Node.js
npm install -D @types/node
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"ES6",
"ES2016.Array.Include"
],
"sourceMap": true,
"outDir": "./dist"
},
"include": [
"src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment