Declaration Map
Declaration Map
Section titled “Declaration Map”You should set declarationMap to true.
Why?
The tells tsc to generate sourcemap for your declaration files.
This enables “Go to Source Definition” features in supporting editors like VS Code.
It makes your code easier to read and understand.
Remember to include your TypeScript source code into the package distribution, so that user of your library can navigate to the included source code.
i.e. add this in your package.json:
{ "files": [ // ... "src" ]}