/* Emit */
"declaration": true
to toggle generating .d.ts
file from TS & JS files
"sourcemap": true
to create .map
ext for debug
"outFile": "./"
to set single bundle output .js file
"outDir": "./dist"
to set output folder for emitted files (usually in ./dist folder)
"rootDir": "./"
to set root dir for where input files live
"removeComments": true
to remove all comments from compiled .js output files
"noEmit": true
to disable outputting any files
"noEmitOnError": true
to disable ANY output file if any type errors found