mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-11-29 18:28:09 +08:00
17 lines
498 B
JavaScript
17 lines
498 B
JavaScript
|
// vetur.config.js
|
||
|
/** @type {import('vls').VeturConfig} */
|
||
|
module.exports = {
|
||
|
// **optional** default: `{}`
|
||
|
// override vscode settings
|
||
|
// Notice: It only affects the settings used by Vetur.
|
||
|
settings: {
|
||
|
'vetur.useWorkspaceDependencies': true,
|
||
|
'vetur.experimental.templateInterpolationService': true
|
||
|
},
|
||
|
// **optional** default: `[{ root: './' }]`
|
||
|
// support monorepos
|
||
|
projects: [
|
||
|
'./packages/fes-template' // shorthand for only root
|
||
|
]
|
||
|
};
|