Blame view

.vscode/launch.json 1.53 KB
f6a4415a   Apichat.Tum   start smart-rms-c...
1
2
{
    "version": "0.2.0",
21a1ff19   Apichat.Tum   fix follow smartr...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    "configurations": [{
        "name": "Launch",
        "type": "node",
        "request": "launch",
        "program": "${workspaceRoot}/server.js",
        "stopOnEntry": false,
        "args": [],
        "cwd": "${workspaceRoot}",
        "preLaunchTask": null,
        "runtimeExecutable": null,
        "runtimeArgs": [
            "--nolazy"
        ],
        "env": {
            "NODE_ENV": "localhost"
cf86e9a3   Apichat.Tum   - ui with oauth2 ...
18
        },
21a1ff19   Apichat.Tum   fix follow smartr...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
        "console": "internalConsole",
        "sourceMaps": true,
        "outDir": null
    }, {
        "name": "Quickstart",
        "type": "node",
        "request": "launch",
        "program": "${workspaceRoot}/quickstart.js",
        "stopOnEntry": false,
        "args": [],
        "cwd": "${workspaceRoot}",
        "preLaunchTask": null,
        "runtimeExecutable": null,
        "runtimeArgs": [
            "--nolazy"
        ],
        "env": {
            "NODE_ENV": "localhost"
f6a4415a   Apichat.Tum   start smart-rms-c...
37
        },
21a1ff19   Apichat.Tum   fix follow smartr...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
        "console": "integratedTerminal",
        "sourceMaps": true,
        "outDir": null
    }, {
        "name": "Attach",
        "type": "node",
        "request": "attach",
        "port": 5858,
        "address": "localhost",
        "restart": false,
        "sourceMaps": false,
        "outDir": null,
        "localRoot": "${workspaceRoot}",
        "remoteRoot": null
    }, {
        "name": "Attach to Process",
        "type": "node",
        "request": "attach",
        "processId": "${command.PickProcess}",
        "port": 5858,
        "sourceMaps": false,
        "outDir": null
    }]
f6a4415a   Apichat.Tum   start smart-rms-c...
61
}