Chipvuelto8/.vscode/launch.json

34 lines
797 B
JSON
Raw Permalink Normal View History

2024-09-01 15:52:46 +01:00
{
// 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": [
{
2024-09-02 15:35:16 +01:00
"type": "chrome",
2024-09-01 15:52:46 +01:00
"request": "launch",
"name": "Debug chip8 emulator",
"reAttach": true,
2024-09-01 16:01:41 +01:00
"url": "http://localhost:5500/",
"webRoot": "${workspaceFolder}",
2024-09-01 15:52:46 +01:00
"pathMappings": [
{
"url": "http://localhost:5500/dist",
"path": "${workspaceFolder}/dist"
},
{
"url": "http://localhost:5500/src",
"path": "${workspaceFolder}/src"
}
2024-09-01 16:01:41 +01:00
],
2024-09-01 15:52:46 +01:00
},
/*
{
"type": "node",
"request": "launch",
"name": "Debug chip8 emulator library",
"program": "${workspaceFolder}/dist/revuelto8ts.js"
}
*/
]
}