1
0
mirror of https://github.com/byulmaru/quesdon synced 2024-11-30 15:58:01 +09:00
quesdon/.vscode/launch.json
2019-11-06 23:56:35 +11:00

31 lines
982 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations":
[
{
"type": "node",
"request": "launch",
"name": "TSC Build and Debug",
"program": "${workspaceFolder}\\src\\server\\index.ts",
"env": { "MONGODB_URL": "mongodb://localhost/quesdon", "BACK_PORT": "3000" },
"preLaunchTask": "build",
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
},
{
"type": "node",
"request": "launch",
// "name": "Yarn start",
// "runtimeExecutable": "yarn",
// "runtimeArgs": [ "start" ],
"name": "TSC Debug without Build",
"program": "${workspaceFolder}\\src\\server\\index.ts",
"env": { "MONGODB_URL": "mongodb://localhost/quesdon", "BACK_PORT": "3000" },
// "stopOnEntry": false,
// "preLaunchTask": "build",
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
}
]
}