Skip to content

Instantly share code, notes, and snippets.

@bennetthardwick
Created February 4, 2018 05:02
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 bennetthardwick/d135f4f7e8d88e6a8fa648c3525b7160 to your computer and use it in GitHub Desktop.
Save bennetthardwick/d135f4f7e8d88e6a8fa648c3525b7160 to your computer and use it in GitHub Desktop.
A tsconfig for my projects
{
"compilerOptions": {
"lib": ["es6"],
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"declaration": true,
"rootDir": ".",
"outDir": "dist",
"types" : ["node"]
},
"include": [
"*.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment