UNPKG

1.06 kBJSONView Raw
1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name": "npm test",
6 "type": "node",
7 "request": "launch",
8 "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
9 "stopOnEntry": false,
10 "args": [],
11 "cwd": "${workspaceRoot}",
12 "preLaunchTask": "build",
13 "runtimeExecutable": null,
14 "runtimeArgs": [
15 "--nolazy"
16 ],
17 "env": {
18 "NODE_ENV": "development",
19 "DEBUG": "metalsmith-changed"
20 },
21 "externalConsole": false,
22 "sourceMaps": false,
23 "outDir": null
24 },
25 {
26 "name": "Attach",
27 "type": "node",
28 "request": "attach",
29 "port": 5858,
30 "address": "localhost",
31 "restart": false,
32 "sourceMaps": false,
33 "outDir": null,
34 "localRoot": "${workspaceRoot}",
35 "remoteRoot": null
36 },
37 {
38 "name": "Attach to Process",
39 "type": "node",
40 "request": "attach",
41 "processId": "${command.PickProcess}",
42 "port": 5858,
43 "sourceMaps": false,
44 "outDir": null
45 }
46 ]
47}