{ // 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" } */ ] }