Chipvuelto8/.vscode/launch.json
2024-09-02 16:35:16 +02:00

34 lines
797 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": "chrome",
"request": "launch",
"name": "Debug chip8 emulator",
"reAttach": true,
"url": "http://localhost:5500/",
"webRoot": "${workspaceFolder}",
"pathMappings": [
{
"url": "http://localhost:5500/dist",
"path": "${workspaceFolder}/dist"
},
{
"url": "http://localhost:5500/src",
"path": "${workspaceFolder}/src"
}
],
},
/*
{
"type": "node",
"request": "launch",
"name": "Debug chip8 emulator library",
"program": "${workspaceFolder}/dist/revuelto8ts.js"
}
*/
]
}