support multiple instance
Clear and concise description of the problem
https://stackblitz.com/edit/vitejs-vite-tytgmrg8?file=vite.config.ts
I have multiple components folders need to be resolved. one is business components put in src/components and should has directoryAsNamespace: true, and one is ui components, which should be used without namespace. I try to use multiple instance to generate two .d.ts files to make it more clear and tweakable. But I found the second instance cannot resolve components. Is there any good solution? thx
Suggested solution
add support for multiple instance
Alternative
No response
Additional context
No response
Validations
- [x] Follow our Code of Conduct
- [x] Read the Contributing Guide.
- [x] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
Because a file will only be converted once, converted files will be marked with an /* unplugin-vue-components disabled */
Because a file will only be converted once, converted files will be marked with an
/* unplugin-vue-components disabled */
thanks. but if it supports multiple instances or multiple separated configure for deferent path, it'll be more convenient.