-
Notifications
You must be signed in to change notification settings - Fork 10
VSCode configurations
Chaitanya Mukka edited this page Dec 27, 2018
·
1 revision
The following configurations were used for development on Microsoft's VSCode.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"useWSL": true,
"name": "Launch Program",
"program": "${workspaceFolder}\\index.js",
},
{
"type": "node",
"request": "launch",
"useWSL": true,
"name": "Mocha All",
"program": "${workspaceFolder}\\node_modules\\mocha\\bin\\_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"${workspaceFolder}\\test"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"useWSL": true,
"name": "Mocha Current File",
"program": "${workspaceFolder}\\node_modules\\mocha\\bin\\_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
- Autolabcli v1.0.0 Docs
- Submission Workflow
- Architecture
- Refactoring Advice
- Feature Development
- Autolabcli Tests
- Events Doc
- Sequence Diagrams
- Testing in Javascript
- Libraries
- Debug Techniques
- Arrow Functions
- Autolabcli v0.1.1 Docs
- References