fixing getting started
This commit is contained in:
parent
d72209b1e8
commit
5b6a1168d1
46
.vscode/launch.json
vendored
Normal file
46
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Launch",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/../pxt/built/pxt.js",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"args": ["serve"],
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"preLaunchTask": null,
|
||||||
|
"runtimeExecutable": null,
|
||||||
|
"runtimeArgs": [
|
||||||
|
"--nolazy"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"NODE_ENV": "development"
|
||||||
|
},
|
||||||
|
"console": "internalConsole",
|
||||||
|
"sourceMaps": false,
|
||||||
|
"outDir": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Attach",
|
||||||
|
"type": "node",
|
||||||
|
"request": "attach",
|
||||||
|
"port": 5858,
|
||||||
|
"address": "localhost",
|
||||||
|
"restart": false,
|
||||||
|
"sourceMaps": false,
|
||||||
|
"outDir": null,
|
||||||
|
"localRoot": "${workspaceRoot}",
|
||||||
|
"remoteRoot": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Attach to Process",
|
||||||
|
"type": "node",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command.PickProcess}",
|
||||||
|
"port": 5858,
|
||||||
|
"sourceMaps": false,
|
||||||
|
"outDir": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -66,4 +66,4 @@ input.onGesture(Gesture.Shake, () => {
|
|||||||
|
|
||||||
### Step 7
|
### Step 7
|
||||||
|
|
||||||
Well done! You have complete this activity.
|
Well done! You have completed this activity.
|
Loading…
Reference in New Issue
Block a user