What am I missing in the tsconfig settings if I only want to output files in the root directory?
If I set it as
"rootDir":"src"
"outDir":"build",
or
"rootDir":"src"
"outDir":"", -> I get what I want, it produces the js file in the root directory
both of these work fine. However, when I set it as
"rootDir":"src"
"outDir":"./"
nothing seems to happen. Why is that? Can anyone assist me with this issue?