Recently, I delved into JSDocs and decided to implement it in my Vue.js project. However, since my project involves multiple file types like .js and .vue, I encountered a syntax error while trying to add them to the "includePattern". Here's the snippet causing the issue:
"source": {
"include": ["src"],
"includePattern": "(.js|.vue$)",
"excludePattern": "(node_modules/|docs)"
}
I'm finding the documentation a bit confusing on how to resolve this problem. Any suggestions would be greatly appreciated!
Thank you!