mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
32 lines
673 B
JSON
32 lines
673 B
JSON
{
|
|
"version": "0.1.0",
|
|
// List of configurations. Add new configurations or edit existing ones.
|
|
"configurations": [
|
|
{
|
|
"name": "Attach",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 6004,
|
|
"sourceMaps": true,
|
|
"outDir": "${workspaceFolder}/out"
|
|
},
|
|
{
|
|
"name": "Unit Tests",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/../../../node_modules/mocha/bin/_mocha",
|
|
"stopOnEntry": false,
|
|
"args": [
|
|
"--timeout",
|
|
"999999",
|
|
"--colors"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeExecutable": null,
|
|
"runtimeArgs": [],
|
|
"env": {},
|
|
"sourceMaps": true,
|
|
"outDir": "${workspaceFolder}/out"
|
|
}
|
|
]
|
|
} |