Using the declare module syntax opens a new opportunity: ✨module descriptions✨
By adding a JSDoc comment above a declare module statement, we can tell intellisense to show a module description.
/** My super cool module */
declare module "my-module" { ... }
I suggest adding a field to the createBundle options to add these comments.
Using the
declare modulesyntax opens a new opportunity: ✨module descriptions✨By adding a JSDoc comment above a
declare modulestatement, we can tell intellisense to show a module description.I suggest adding a field to the
createBundleoptions to add these comments.