29 lines
1,020 B
JSON
29 lines
1,020 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": "msedge",
|
||
|
"request": "launch",
|
||
|
"name": "Run PWA",
|
||
|
"webRoot": "${workspaceFolder}/",
|
||
|
"runtimeArgs": [
|
||
|
"--app=http://localhost:3000"
|
||
|
],
|
||
|
"sourceMapPathOverrides": {
|
||
|
"../../src": "${workspaceFolder}/src",
|
||
|
"../../src/*": "${workspaceFolder}/src/*"
|
||
|
},
|
||
|
"preLaunchTask": "npm run dev-task",
|
||
|
"postDebugTask": "postdebugKill"
|
||
|
},
|
||
|
{
|
||
|
"name": "Launch Microsoft Edge and open the Edge DevTools",
|
||
|
"request": "launch",
|
||
|
"type": "vscode-edge-devtools.debug",
|
||
|
"url": "" // Provide your project's url to finish configuring
|
||
|
}
|
||
|
]
|
||
|
}
|