1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00
budibase/.vscode/launch.json

26 lines
799 B
JSON
Raw Normal View History

2019-06-07 23:02:48 +12:00
{
// 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",
2019-11-09 21:14:10 +13:00
"name": "Launch Program",
"program": "${workspaceFolder}/app.js",
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug External",
"program": "${workspaceFolder}/packages/cli/bin/budi",
"args": [],
"cwd":"C:/code/my-apps",
2019-06-07 23:02:48 +12:00
"console": "externalTerminal"
}
]
}