This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/.vscode/launch.json

17 lines
281 B
JSON
Raw Normal View History

2021-10-07 16:49:21 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"console": "integratedTerminal",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start"
],
}
]
}