Skip to content

Commit 12f2aa3

Browse files
author
Akos Kitta
committedApr 9, 2020
Added support for 3rd party core settings.
Closes arduino/arduino-pro-ide#10. Signed-off-by: Akos Kitta <[email protected]>
1 parent 5c16f8d commit 12f2aa3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1918
-908
lines changed
 

‎.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,27 @@
8383
"smartStep": true,
8484
"internalConsoleOptions": "openOnSessionStart",
8585
"outputCapture": "std"
86+
},
87+
{
88+
"type": "node",
89+
"request": "launch",
90+
"protocol": "inspector",
91+
"name": "Run Test [current]",
92+
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
93+
"args": [
94+
"--require",
95+
"reflect-metadata/Reflect",
96+
"--no-timeouts",
97+
"--colors",
98+
"**/${fileBasenameNoExtension}.js"
99+
],
100+
"env": {
101+
"TS_NODE_PROJECT": "${workspaceRoot}/tsconfig.json"
102+
},
103+
"sourceMaps": true,
104+
"smartStep": true,
105+
"internalConsoleOptions": "openOnSessionStart",
106+
"outputCapture": "std"
86107
}
87108
]
88109
}

‎arduino-debugger-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
],
2727
"theiaExtensions": [
2828
{
29-
"backend": "lib/node/backend-module",
30-
"frontend": "lib/browser/frontend-module"
29+
"backend": "lib/node/arduino-debug-backend-module",
30+
"frontend": "lib/browser/arduino-debug-frontend-module"
3131
}
3232
]
3333
}

0 commit comments

Comments
 (0)
Please sign in to comment.