mirror of
https://github.com/mountain-loop/yaak.git
synced 2025-12-23 22:48:55 -05:00
27 lines
536 B
JSON
27 lines
536 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dev App",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "start"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Build App",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "start"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Bootstrap",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "bootstrap"]
|
|
}
|
|
]
|
|
}
|