Skip to content

Instantly share code, notes, and snippets.

@GokselKUCUKSAHIN
Created February 18, 2022 08:11
Show Gist options
  • Save GokselKUCUKSAHIN/ae46b5a3c8977a74e936797bcf185975 to your computer and use it in GitHub Desktop.
Save GokselKUCUKSAHIN/ae46b5a3c8977a74e936797bcf185975 to your computer and use it in GitHub Desktop.
My Boilerplate TypeScript Config JSON
{
"compilerOptions": {
"module": "commonjs",
"target": "ESNext",
"sourceMap": false, // default true
"outDir": "./js",
"rootDir": "./ts",
"moduleResolution": "node",
"removeComments": true,
"declaration": true // default false
},
"exclude": [
"node_modules",
"js"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment