42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "ChatAI Server",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/node_modules/nodemon/bin/nodemon.js",
|
|
"restart": true,
|
|
"runtimeExecutable": "node",
|
|
"args": [
|
|
"${workspaceFolder}/bin/server.js"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"autoAttachChildProcesses": true,
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"sourceMaps": true,
|
|
"env": {
|
|
"NODE_ENV": "development",
|
|
"TESTING_ON": "1"
|
|
},
|
|
},
|
|
{
|
|
"name": "ChatAI Client",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/bin/cli.js",
|
|
"restart": true,
|
|
"runtimeExecutable": "node",
|
|
"cwd": "${workspaceFolder}",
|
|
"autoAttachChildProcesses": true,
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"sourceMaps": true,
|
|
"env": {
|
|
"NODE_ENV": "development",
|
|
"TESTING_ON": "1"
|
|
},
|
|
},
|
|
]
|
|
} |