sp-dev-fx-webparts/samples/react-calendar-feed/.vscode/launch.json

28 lines
827 B
JSON
Raw Normal View History

2018-06-07 07:09:40 -04:00
{
/**
* Install Chrome Debugger Extension for Visual Studio Code to debug your components with the
* Chrome browser: https://aka.ms/spfx-debugger-extensions
*/
"version": "0.2.0",
2022-10-21 17:31:02 -04:00
"configurations": [
2018-06-07 07:09:40 -04:00
{
"name": "Hosted workbench",
2022-10-21 17:31:02 -04:00
"type": "pwa-chrome",
2018-06-07 07:09:40 -04:00
"request": "launch",
"url": "https://enter-your-SharePoint-site/_layouts/workbench.aspx",
"webRoot": "${workspaceRoot}",
"sourceMaps": true,
"sourceMapPathOverrides": {
2019-01-19 05:52:47 -05:00
"webpack:///.././src/*": "${webRoot}/src/*",
2018-06-07 07:09:40 -04:00
"webpack:///../../../src/*": "${webRoot}/src/*",
"webpack:///../../../../src/*": "${webRoot}/src/*",
"webpack:///../../../../../src/*": "${webRoot}/src/*"
},
"runtimeArgs": [
"--remote-debugging-port=9222",
"-incognito"
]
}
]
2022-10-21 17:31:02 -04:00
}