-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvuejs-core-3-book.code-workspace
67 lines (67 loc) · 1.24 KB
/
vuejs-core-3-book.code-workspace
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "chapter-2",
"path": "二、响应系统"
},
{
"name": "chapter-3",
"path": "三、渲染器"
},
{
"name": "chapter-4",
"path": "四、组件化"
},
// {
// "path": "typescript-config-test"
// },
// {
// "path": "code-for-vue-3-book-master"
// }
],
"settings": {
"files.autoSave": "onFocusChange",
"vitest.disabledWorkspaceFolders": [
"root"
],
"vitest.exclude": [
"**/node_modules/**",
"**/dist/**",
"**/cypress/**",
"**/.{idea,git,cache,output,temp}/**",
"_*/**",
"**/*tmp/**",
"**/*bak/**",
"**/*test/**",
"**/test/**",
],
"cSpell.enableFiletypes": [
"shellscript"
],
"testing.automaticallyOpenPeekView": "never",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/serve.sh.log": false,
"**/node_modules": false,
"**/.node-version": false,
"tests/unit/coverage": true,
"**/.idea": true
},
"explorerExclude.backup": {},
"liveServer.settings.multiRootWorkspaceName": "chapter-3",
"cSpell.words": [
"ignors"
]
}
}