1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 07:18:26 -04:00
jarv.is/.vscode/launch.json

23 lines
596 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"request": "launch",
"name": "Start local server",
"command": "npm start"
},
{
"type": "firefox",
"request": "launch",
"name": "Launch local server in Firefox",
"url": "http://localhost:1337/",
"webRoot": "${workspaceFolder}",
"reAttach": true
}
]
}