|
@@ -1,36 +1,42 @@
|
|
|
{
|
|
|
- // 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": [
|
|
|
- {
|
|
|
- "name": "sentry frontend",
|
|
|
- "type": "chrome",
|
|
|
- "request": "launch",
|
|
|
- "url": "http://dev.getsentry.net:8000",
|
|
|
- "webRoot": "${workspaceRoot}/src/sentry/static/sentry/app"
|
|
|
- },
|
|
|
- {
|
|
|
- "name": "sentry backend",
|
|
|
- "type": "python",
|
|
|
- "request": "launch",
|
|
|
- "stopOnEntry": true,
|
|
|
- "program": "${workspaceRoot}/.venv/bin/sentry",
|
|
|
- "args": ["devserver"],
|
|
|
- "cwd": "${workspaceRoot}",
|
|
|
- "debugOptions": ["WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput"]
|
|
|
- },
|
|
|
- {
|
|
|
- "name": "jest",
|
|
|
- "type": "node",
|
|
|
- "request": "launch",
|
|
|
- "protocol": "inspector",
|
|
|
- "program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
|
- "internalConsoleOptions": "openOnSessionStart",
|
|
|
- "args": [
|
|
|
- "--runInBand"
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
+ // 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": [
|
|
|
+ {
|
|
|
+ "name": "sentry frontend",
|
|
|
+ "type": "chrome",
|
|
|
+ "request": "launch",
|
|
|
+ "url": "http://dev.getsentry.net:8000",
|
|
|
+ "webRoot": "${workspaceRoot}/src/sentry/static/sentry/app"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "sentry backend",
|
|
|
+ "type": "python",
|
|
|
+ "request": "launch",
|
|
|
+ "stopOnEntry": true,
|
|
|
+ "program": "${workspaceRoot}/.venv/bin/sentry",
|
|
|
+ "args": ["devserver"],
|
|
|
+ "cwd": "${workspaceRoot}",
|
|
|
+ "debugOptions": ["WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput"]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "sentry backend debug",
|
|
|
+ "type": "python",
|
|
|
+ "request": "launch",
|
|
|
+ "program": "${workspaceRoot}/.venv/bin/sentry",
|
|
|
+ "args": ["devserver", "--debug-server", "--no-pretty"],
|
|
|
+ "cwd": "${workspaceRoot}"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "jest",
|
|
|
+ "type": "node",
|
|
|
+ "request": "launch",
|
|
|
+ "protocol": "inspector",
|
|
|
+ "program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
|
+ "internalConsoleOptions": "openOnSessionStart",
|
|
|
+ "args": ["--runInBand"]
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|