mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
Initial BigQuery Client Support Upstream update ConnectionInterface.vue Multiple changes, cleanup and vscode - Cleanup code for upstream PR - Finally a working vscode launch with proper sourceMap for Renderer Add listViews and logs cleanup Vscode Launch config Adding BigQuery Client Update Bigqueryform.vue fix build issues Bigquery, bugfixes and changes
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Electron: Main",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd":"${workspaceFolder}/apps/studio",
|
|
"runtimeExecutable": "${workspaceFolder}/apps/studio/node_modules/.bin/electron",
|
|
"preLaunchTask": "electron-debug",
|
|
"args": [
|
|
"--remote-debugging-port=9223",
|
|
"./dist_electron",
|
|
"--enable-logging"
|
|
],
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///./src/*": "${webRoot}/apps/studio/src/*"
|
|
},
|
|
"sourceMaps": true,
|
|
},
|
|
|
|
{
|
|
"name": "Electron: Renderer",
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"port": 9223,
|
|
"urlFilter": "http://localhost:*",
|
|
"timeout": 50000,
|
|
"webRoot": "${workspaceFolder}",
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///./src/*": "${webRoot}/apps/studio/src/*"
|
|
},
|
|
"sourceMaps": true,
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Electron: All",
|
|
"configurations": [
|
|
"Electron: Main",
|
|
"Electron: Renderer"
|
|
]
|
|
}
|
|
]
|
|
}
|