-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.code-workspace
47 lines (47 loc) · 1.04 KB
/
Project.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
{
"folders": [
{
"path": ".",
"name": "Root"
},
{
"path": "src",
"name": "Source Code"
},
{
"path": "docs",
"name": "Documentation"
}
],
"settings": {
"files.exclude": {
"docs": true,
"src": true
},
"liveServer.settings.multiRootWorkspaceName": "src"
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Butler: Build",
"type": "shell",
"command": "butler",
"args": [
"push",
"./src",
"HoleInOneGolfer/corrupt-space-defender:html"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"launch": {
"configurations": [],
"compounds": []
}
}