12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Run tests",
- "type": "node",
- "request": "launch",
- "program": "${workspaceRoot}/node_modules/qunit-cli/bin/qunit-cli",
- "stopOnEntry": false,
- "args": [ "all_tests.js" ],
- "cwd": "${workspaceRoot}",
- "preLaunchTask": null,
- "runtimeExecutable": null,
- "runtimeArgs": [
- "--nolazy"
- ],
- "env": {
- "NODE_ENV": "development"
- },
- "externalConsole": false,
- "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
- }
- ]
- }
|