Skip to content

Instantly share code, notes, and snippets.

@TylerSustare
Created February 12, 2020 19:17
Show Gist options
  • Save TylerSustare/45fc5df0ac02a3e3b163b61d8cf77e83 to your computer and use it in GitHub Desktop.
Save TylerSustare/45fc5df0ac02a3e3b163b61d8cf77e83 to your computer and use it in GitHub Desktop.
Default tsconfig
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"lib": ["ESNext", "ES2019", "es2018", "es2017", "es7", "es6", "dom"],
"declaration": true,
"outDir": "./dist",
"strict": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"sourceMap": true,
"inlineSources": true,
"incremental": true
},
"exclude": ["node_modules", "dist"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment