-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscratch-www.code-workspace
91 lines (91 loc) · 1.63 KB
/
scratch-www.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"launch": {
"configurations": [
{
"name": "www client",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8333",
"webRoot": "${workspaceFolder:scratch-www}",
"disableNetworkCache": true,
"showAsyncStacks": true,
"sourceMaps": true,
"smartStep": true
},
{
"name": "www server",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder:scratch-www}",
"program": "${workspaceFolder:scratch-www}/dev-server/index.js",
"autoAttachChildProcesses": true,
"console": "internalConsole",
"outputCapture": "std"
}
],
"compounds": [
{
"name": "www",
"configurations": [
"www server",
"www client"
]
}
]
},
"settings": {},
"folders": [
{
"name": "scratch-www",
"path": "../scratch-www"
},
{
"name": "eslint-config-scratch",
"path": "../eslint-config-scratch"
},
{
"name": "paper.js",
"path": "../paper.js"
},
{
"name": "scratch-audio",
"path": "../scratch-audio"
},
{
"name": "scratch-blocks",
"path": "../scratch-blocks"
},
{
"name": "scratch-gui",
"path": "../scratch-gui"
},
{
"name": "scratch-l10n",
"path": "../scratch-l10n"
},
{
"name": "scratch-paint",
"path": "../scratch-paint"
},
{
"name": "scratch-render",
"path": "../scratch-render"
},
{
"name": "scratch-render-fonts",
"path": "../scratch-render-fonts"
},
{
"name": "scratch-storage",
"path": "../scratch-storage"
},
{
"name": "scratch-svg-renderer",
"path": "../scratch-svg-renderer"
},
{
"name": "scratch-vm",
"path": "../scratch-vm"
}
]
}