AFFiNE/.vscode/launch.template.json

18 lines
321 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
2023-03-20 10:05:02 +03:00
"command": "yarn run dev",
"name": "Run Dev",
"request": "launch",
"type": "node-terminal"
},
{
"command": "yarn run dev:local",
"name": "Run Dev Locally",
"request": "launch",
"type": "node-terminal"
}
]
}