mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
32 lines
990 B
JSON
32 lines
990 B
JSON
{
|
|
// 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": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Electron App",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
|
"program": "${workspaceFolder}/main.js",
|
|
"sourceMaps": true,
|
|
"args": [
|
|
"--test=true",
|
|
"--blub=wuhuu"
|
|
]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch build-helper",
|
|
"program": "${workspaceFolder}/build-helper.js",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"args": [
|
|
"electron.manifest.json"
|
|
]
|
|
}
|
|
]
|
|
} |