Skip to content

Instantly share code, notes, and snippets.

@technoscavenger
Created December 18, 2019 02:33
Show Gist options
  • Save technoscavenger/052abb44d17f0b3da9f737ca54a5d4f9 to your computer and use it in GitHub Desktop.
Save technoscavenger/052abb44d17f0b3da9f737ca54a5d4f9 to your computer and use it in GitHub Desktop.
My default TypeScript configuration
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true,
"declaration": true,
"sourceMap": true,
"outDir": "./dist"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment