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

18 lines
383 B
JSON
Raw Normal View History

2023-02-28 12:04:56 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Run website",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "yarn",
"skipFiles": [
"<node_internals>/**"
],
}
]
}