I have a lib in a folder with subfolders, with some typescript files, and some of those depends of other files in other subfolders.
I want to include some of those files like it were local in another project. A similar function is available in visual studio (add reference file/folder), but was unable to reproduce with typescript/vscode.
Tried multiples ways like direct import and with the tsconfig (paths, includes, reference projects,etc) but all of those have problems to achieve that. I ended making symbolic links, but not the best solution.
Just to be clear:
- I don't want to have a node_module/typings in each subfolder library
- I don't want a precompiled project with each subfolder library
- I just want a file in another folder like it were local in a project
Thanks in advance