web-font/.vscode/launch.json
2021-03-11 23:16:46 +08:00

20 lines
580 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "malagu serve",
"program": "${workspaceRoot}/node_modules/@malagu/cli/bin/malagu",
"args": [ "serve" ],
"cwd": "${workspaceFolder}/apps/backend",
"sourceMaps": true,
"env": {
"NODE_ENV": "development"
},
"smartStep": true,
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std"
}
]
}