Right now I am debugging my library as one single huge file in JavaScript located in the fems5 folder.
I have the library source code, and the .js.map in the fems2 folder, but I don't know how to link them to the source code and debug viewing Typescript instead.
I have tried:
- npm link
- combinations of settings in angular.json build and serve like "vendorSourceMap", "sourceMap", "preserveSymlinks"
- tsconfig.json options like "sourceRoot", "mapRoot", "paths"
But I couldn't and I cant find any documentation referring only to version 6, to know if I am using them properly.
Is it possible? With npm link or without it? by changing some path? copying the source somewhere?
Library:
Application:
Thanks.

