-
Notifications
You must be signed in to change notification settings - Fork 10
/
vetur.config.js
51 lines (50 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
51
/**
* vetur.config.js
*
* https://vuejs.github.io/vetur/guide/setup.html#advanced
*
* Monorepo 환경에서는 projects 속성에 각 프로젝트를 등록해야 함
*/
/** @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: [
{
// 프로젝트 위치
root: './packages/common',
package: './package.json',
// tsconfig 파일 위치 (root 속성의 상대경로)
tsconfig: './tsconfig.json',
snippetFolder: './.vscode/vetur/snippets',
globalComponents: [],
},
{
root: './packages/dogyeong',
package: './package.json',
tsconfig: './src/frontend/tsconfig.json',
snippetFolder: './.vscode/vetur/snippets',
globalComponents: [],
},
{
// 프로젝트 위치
root: './packages/karl',
package: './package.json',
// tsconfig 파일 위치 (root 속성의 상대경로)
tsconfig: './tsconfig.json',
snippetFolder: './.vscode/vetur/snippets',
globalComponents: [],
},
{
root: './packages/wiii',
package: './package.json',
tsconfig: './tsconfig.frontend.json',
globalComponents: [],
},
],
};