Currently VTI uses the configuration settings in initParams.ts. It would be useful to be able to configure those settings.
There seems to be a few options:
Read a vscode settings.json file for the relevant vetur settings (this could be configurable by a CLI parameter, and default to the first found in the working directory)
Provide CLI parameters to configure the settings
Some other config file provided in the working directory.
I would like to implement one of these. 1 seems the most intuitive, except for projects that want to use VTI in their CI pipelines even though they don't typically/always use VSCode as their IDE. It seems a little odd to pollute a project with a vscode-specific settings.json, if vscode is not the mandated editor.
I think we can add vetur.config.js?
Here are my personal ideas:
We can use vetur.config.js for vscode some settings and VTI settings.
I can share the settings between VSCode and VTI.
I agree with reading vscodesettings.jsonis strange.
If use vscodesettings.json, I need to add this file to git, but It have some personal setting.
The vetur.config.js add monorepo setting for support.
I've been thinking about monorepo support.
I'm not sure aboutpackage.jsonortsconfig.jsonprevail in monorepo.
I think it might be better if I set it up.
Here are my personal ideas:
- We can use
vetur.config.jsfor vscode some settings
> I can share the settings between VSCode and VTI.
> I agree with reading vscodesettings.jsonis strange.
> If use vscodesettings.json, I need to add this file to git, but It have some personal
Here are my personal ideas:
- We can use
vetur.config.jsfor vscode some settings and VTI settings.I can share the settings between VSCode and VTI.
I agree with reading vscodesettings.jsonis strange.
If use vscodesettings.json, I need to add this file to git, but It have some personal setting.
- The
vetur.config.jsadd monorepo setting for support.I've been thinking about monorepo support.
I'm not sure aboutpackage.jsonortsconfig.jsonprevail in monorepo.
I think it might be better if I set it up.
I think this is a good solution for monorepo setup
Having an independent config file will help us be more proactive in setting up monorepo with different paths instead of depending on tsconfig file.
Hi everyone,

If you interested this issue,

you can go to https://github.com/vuejs/vetur/pull/2377 and https://github.com/vuejs/vetur/pull/2378.
View and post your ideas.
Most helpful comment
Here are my personal ideas:
We can use
vetur.config.jsfor vscode some settings and VTI settings.The
vetur.config.jsadd monorepo setting for support.