Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The package isn't "TypeScript-ready" as stated in the docs #90

Open
lukaszarpak opened this issue Feb 2, 2023 · 1 comment
Open

The package isn't "TypeScript-ready" as stated in the docs #90

lukaszarpak opened this issue Feb 2, 2023 · 1 comment

Comments

@lukaszarpak
Copy link

Describe the bug
There aren't any declaration files inside node_modules for this package therefore it doesn't work with Typescript.

To Reproduce
Install the package as described in the docs and try to compile the project with strict flag from TS.

Expected behavior
index.d.ts file should be present inside node_modules/vue-safe-html

Temporary workaround
Add index.d.ts to your vue.js project with following content:

declare module "vue-safe-html" {
  import { Plugin } from "vue";

  declare const plugin: Plugin;
  export default plugin;

  export const allowedTags: string[];
}
@LostCrew
Copy link
Member

Thank you @lukaszarpak for the suggestion. I will add the defs and push a new minor version soon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants