vetur change tsconfig location
// vetur.config.js module.exports = { projects: [ './apps/client' ] }
Here is what the above code is Doing:
1. We’re creating a new file called vetur.config.js in the root of our project.
2. We’re exporting an object with a projects property.
3. The projects property is an array of strings.
4. Each string is a path to a project.
5. In this case, we’re only pointing to one project, but we could point to as many as we want.
Now, let’s go back to our VSCode settings and add the following: