35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
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": "init",
|
||
|
"program": "${workspaceFolder}\\bin\\budi",
|
||
|
"args": ["init"],
|
||
|
"console": "integratedTerminal",
|
||
|
"cwd": "${workspaceFolder}/sandbox"
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "new",
|
||
|
"program": "${workspaceFolder}\\bin\\budi",
|
||
|
"args": ["new", "my-app"],
|
||
|
"console": "integratedTerminal",
|
||
|
"cwd": "${workspaceFolder}/sandbox"
|
||
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "run",
|
||
|
"program": "${workspaceFolder}\\bin\\budi",
|
||
|
"args": ["run"],
|
||
|
"console": "integratedTerminal",
|
||
|
"cwd": "${workspaceFolder}/sandbox"
|
||
|
}
|
||
|
]
|
||
|
}
|