0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 09:16:49 +01:00
posthog/plugin-server/.vscode/launch.json

52 lines
1.9 KiB
JSON
Raw Normal View History

{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug (Postgres)",
"type": "node",
"request": "launch",
"protocol": "inspector",
"restart": true,
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/@posthog/piscina/**"],
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ts-node-dev",
"runtimeArgs": ["--inspect", "--exit-child"],
"args": ["src/index.ts"],
"env": {
"NODE_ENV": "dev",
"BASE_DIR": "${workspaceFolder}/../posthog"
}
},
{
"name": "Debug (ClickHouse)",
"type": "node",
"request": "launch",
"protocol": "inspector",
"restart": true,
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/@posthog/piscina/**"],
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ts-node-dev",
"runtimeArgs": ["--inspect", "--exit-child"],
"args": ["src/index.ts"],
"env": {
"NODE_ENV": "dev",
"BASE_DIR": "${workspaceFolder}/../posthog",
"KAFKA_ENABLED": "1",
"KAFKA_HOSTS": "kafka:9092"
}
},
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"program": "${workspaceFolder}/node_modules/.bin/jest",
"cwd": "${workspaceFolder}",
"args": ["--runInBand", "--forceExit", "--watchAll=false"]
}
]
}