1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 07:17:28 +00:00
steffoweb/.vscode/launch.json

18 lines
No EOL
383 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Run website",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "yarn",
"skipFiles": [
"<node_internals>/**"
],
}
]
}