Skip to content

Instantly share code, notes, and snippets.

@bennycode
Created November 26, 2018 16:06
Show Gist options
  • Save bennycode/9fac245434a5904139279d0330db40ce to your computer and use it in GitHub Desktop.
Save bennycode/9fac245434a5904139279d0330db40ce to your computer and use it in GitHub Desktop.
Basic tsconfig.json for Node.js
{
"compilerOptions": {
"lib": [
"dom",
"es6"
],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"removeComments": true,
"rootDir": "src",
"strict": true,
"target": "es5"
},
"exclude": [
"dist",
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment