Commit 751c798
authored
export type instead of export
Hi
I am trying to use Your library with isolatedModules in my tsconfig an this gives me an warning:
```
node_modules/vue-markdown-render/src/VueMarkdown.ts:3:10 - error TS1205: Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.
export { Options } from 'markdown-it'
~~~~~~~
```
i think it should be
```
export type { Options } from 'markdown-it'
```
To provide more compatibility.1 parent 1e6a929 commit 751c798
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments