-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbedrock-development.code-workspace
67 lines (67 loc) · 1.7 KB
/
bedrock-development.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": "BP",
"path": "behavior_packs\\"
},
{
"name": "RP",
"path": "resource_packs\\"
},
{
"name": "TS",
"path": "ts\\"
},
{
"name": "SRC",
"path": "bin\\app\\src"
},
{
"name": "Root",
"path": "."
}
],
"settings": {
"files.associations": {
"*.json": "jsonc" // Opens .json files as jsonc (json with comments) so adding comments does not show errors
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Install",
"command": "if exist ../node_modules (echo Packages Installed) else (npm i)",
"type": "shell",
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "silent",
"close": true
},
"isBackground": true,
"icon": {
"id": "arrow-down"
}
},
{
"label": "Watch",
"command": "npx tsc -w",
"type": "shell",
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "silent"
},
"dependsOn":["Install"],
"isBackground": true,
"group": "build",
"icon": {
"id": "eye-watch"
}
}
]
}
}