Consider changing your package.json file to have @types/howler as a peer dependency that's optional. Optional is important because not everyone uses Typescript.
You package.json would then look something like this (depends on your deps conventions for SEMVER et al):
This will let users know that it's a recommended peer dependency when adding to their projects. This will resolve some of the repetitive open issues with regards to missing type definitions.
Consider changing your package.json file to have
@types/howler
as a peer dependency that's optional. Optional is important because not everyone uses Typescript.You package.json would then look something like this (depends on your deps conventions for SEMVER et al):
This will let users know that it's a recommended peer dependency when adding to their projects. This will resolve some of the repetitive open issues with regards to missing type definitions.