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