mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-21 16:33:48 +01:00
25 lines
628 B
JSON
25 lines
628 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Frontend with Chrome",
|
|
"request": "launch",
|
|
"type": "chrome",
|
|
"url": "http://localhost:3000",
|
|
"webRoot": "${workspaceFolder}/packages/client/src",
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///client/src/*": "${workspaceFolder}/built/_client_dist_/*", // Example: "webpack:///src/app.js" -> "/Users/me/project/app.js"
|
|
}
|
|
},
|
|
{
|
|
"name": "Attach to Backend by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"request": "attach",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node"
|
|
}
|
|
]
|
|
}
|