mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 17:39:19 +00:00
Relocate code into src folder
This commit is contained in:
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@@ -15,7 +15,7 @@
|
|||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceRoot}",
|
||||||
"program": "${workspaceRoot}/debugMain.js",
|
"program": "${workspaceRoot}/src/debugMain.js",
|
||||||
"args": [ "--server=4711" ]
|
"args": [ "--server=4711" ]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ var vscode = require('vscode');
|
|||||||
// your extension is activated the very first time the command is executed
|
// your extension is activated the very first time the command is executed
|
||||||
function activate(context) {
|
function activate(context) {
|
||||||
|
|
||||||
/* Nothing is done here. The debugger is launched from debugMain.js */
|
/* Nothing is done here. The debugger is launched from src/debugMain.js */
|
||||||
|
|
||||||
// The commandId parameter must match the command field in package.json
|
// The commandId parameter must match the command field in package.json
|
||||||
var disposables = [
|
var disposables = [
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
"debuggers": [{
|
"debuggers": [{
|
||||||
"type": "android",
|
"type": "android",
|
||||||
"label": "Android Debug",
|
"label": "Android Debug",
|
||||||
"program": "./debugMain.js",
|
"program": "./src/debugMain.js",
|
||||||
"runtime": "node",
|
"runtime": "node",
|
||||||
|
|
||||||
"configurationAttributes": {
|
"configurationAttributes": {
|
||||||
|
|||||||
Reference in New Issue
Block a user