Using an npm package without typescript support give an error
Could not find a declaration file for module '...'. '...' implicitly has an 'any' type.
Try `npm i --save-dev @types/adobe__pdfservices-node-sdk` if it exists or add a new declaration (.d.ts) file containing `declare module '@adobe/pdfservices-node-sdk';`ts(7016)
creating an .d.ts file is not really an option. The type is still missing or you have add the required types by hand.
There is also possible to generate [.d.ts.][https://www.typescriptlang.org/docs/handbook/declaration-files/dts-from-js.html] from the jsdoc comments with typescript compiler. But this seem to created for the owner of the package and not for the consumer.
Question: What is the best way to add intellisense of an npm package with jsdoc comments