-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathvscode-nodejs-repl.code-workspace
More file actions
45 lines (45 loc) · 981 Bytes
/
vscode-nodejs-repl.code-workspace
File metadata and controls
45 lines (45 loc) · 981 Bytes
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
{
"folders": [
{
"name": "nodejs-repl",
"path": "."
}
],
"settings": {
"launch": {
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder:nodejs-repl}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder:nodejs-repl}/out/**/*.js"
]
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder:nodejs-repl}",
"--extensionTestsPath=${workspaceFolder:nodejs-repl}/out/test"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder:nodejs-repl}/out/test/**/*.js"
],
"preLaunchTask": "npm: watch"
}
]
}
}
}