While working on a series of projects with the same tsconfig.json files, I've encountered a strange issue in one of them.
I have
"outDir": "./lib",
The expected results (.js, .d.ts) from src should be placed in the lib directory just like in the other projects.
This particular project is located at
y:\dev\HomeControl\NScripts\hcdefs\
however, the output is strangely being generated in
y:\dev\HomeControl\NScripts\hcdefs\lib\dev\HomeControl\NScripts\hcdefs\src
Why is it using the absolute path instead of the relative path in just this one project? Any ideas?