14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
// vetur.config.js
|
|
/** @type {import('vls').VeturConfig} */
|
|
module.exports = {
|
|
// override vscode settings
|
|
// Notice: It only affects the settings used by Vetur.
|
|
settings: {
|
|
// "vetur.useWorkspaceDependencies": true,
|
|
// "vetur.experimental.templateInterpolationService": true
|
|
},
|
|
projects: [
|
|
'./src/JobsJobsJobs/App'
|
|
]
|
|
}
|