what do I miss in tsconfig setting? if I just want to output file in the root directory.
if I set
"rootDir":"src"
"outDir":"build",
or
"rootDir":"src"
"outDir":"", -> got what I want, produce jsfile in root directory
both work, but when I set
"rootDir":"src"
"outDir":"./"
nothing happens, why? can anyone help me?