sequel-ice/.vscode/launch.json

14 lines
302 B
JSON
Raw Permalink Normal View History

2024-01-03 15:00:36 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
2024-01-04 15:37:42 +08:00
"args": [".", "--NODE_ENV=development"]
2024-01-03 15:00:36 +08:00
}
]
}