I've made a library written in TypeScript, and now I want to make a sample app for this.
To do that, I added a new project to my current Visual Studio solution.
The folder tree is like this:
SamiTS
├───SamiTS
└───SamiTSSampleApp
and I added a reference to my library using:
///<reference path='../SamiTS/samiconverter.ts' />
Now I can build them together well, but I cannot debug with Visual Studio as it sets SamiTSSampleApp folder as the root directory so that I cannot access SamiTS folder with '../SamiTS'
Can I solve this problem, without copying my library (composed of multiple files, compiled into one single file) to the new folder?