Graphite/vetur.config.js
ProTheory8 88b6703a02 Add .gitattributes file (#46)
Add .gitattributes and enforce the use of LF
2021-03-27 15:48:05 +05:00

13 lines
351 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,
},
// **optional** default: `[{ root: './' }]`
// support monorepos
projects: ['./client/web']
}