Created
February 18, 2022 08:11
-
-
Save GokselKUCUKSAHIN/ae46b5a3c8977a74e936797bcf185975 to your computer and use it in GitHub Desktop.
My Boilerplate TypeScript Config JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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