mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-21 22:07:19 +00:00
38 lines
1.3 KiB
JSON
38 lines
1.3 KiB
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 Node.js Program",
|
|
"program": "${file}"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Backend",
|
|
"program": "${workspaceRoot}/arduino-ide-browser/src-gen/backend/main.js",
|
|
"args": [
|
|
"--hostname=0.0.0.0",
|
|
"--port=3000",
|
|
"--no-cluster",
|
|
"--no-app-auto-install"
|
|
],
|
|
"env": {
|
|
"NODE_ENV": "development"
|
|
},
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceRoot}/arduino-ide-browser/src-gen/backend/*.js",
|
|
"${workspaceRoot}/arduino-ide-browser/lib/**/*.js",
|
|
"${workspaceRoot}/arduino-ide-extension/*/lib/**/*.js"
|
|
],
|
|
"smartStep": true,
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"outputCapture": "std"
|
|
}
|
|
]
|
|
} |