This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vetur.config.js
41 lines (40 loc) · 1.57 KB
/
vetur.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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
},
projects: [
'./webserver/website', // Shorthand for specifying only the project root location
{
// **required**
// Where is your project?
// It is relative to `vetur.config.js`.
root: './webserver/website',
// // **optional** default: `'package.json'`
// // Where is `package.json` in the project?
// // We use it to determine the version of vue.
// // It is relative to root property.
// package: './package.json',
// // **optional**
// // Where is TypeScript config file in the project?
// // It is relative to root property.
// tsconfig: './tsconfig.json',
// // **optional** default: `'./.vscode/vetur/snippets'`
// // Where is vetur custom snippets folders?
// snippetFolder: './.vscode/vetur/snippets',
// // **optional** default: `[]`
// // Register globally Vue component glob.
// // If you set it, you can get completion by that components.
// // It is relative to root property.
// // Notice: It won't actually do it. You need to use `require.context` or `Vue.component`
// globalComponents: [
// './src/components/**/*.vue'
// ]
}
]
}