Skip to content

Commit

Permalink
Merge pull request microsoft#8 from southworkscom/node-search-vscode
Browse files Browse the repository at this point in the history
Node \ Search \ Add missing launch.json for VSCode
  • Loading branch information
Andrea-Orimoto authored Sep 22, 2016
2 parents 50f37f0 + 846e73e commit 4a84684
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Node/demo-Search/JobListingBot/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/app.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development",
"MICROSOFT_APP_ID": "",
"MICROSOFT_APP_PASSWORD": ""
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
}
]
}
27 changes: 27 additions & 0 deletions Node/demo-Search/RealEstateBot/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/app.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development",
"MICROSOFT_APP_ID": "",
"MICROSOFT_APP_PASSWORD": ""
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
}
]
}

0 comments on commit 4a84684

Please sign in to comment.