20 lines
366 B
JSON
20 lines
366 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "StartDev",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "start"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Lint",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "lint"]
|
|
}
|
|
]
|
|
}
|