123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "type": "node",
- "request": "launch",
- "name": "Meteor: Node",
- "runtimeExecutable": "meteor",
- "runtimeArgs": [
- "--port=4000",
- "--exclude-archs=web.browser.legacy,web.cordova",
- "--raw-logs"
- ],
- "env": {
- "WRITABLE_PATH": "/tmp/uploads",
- },
- "outputCapture": "std",
- "restart": true,
- "timeout": 60000
- },
- {
- "type": "chrome",
- "request": "launch",
- "name": "Meteor: Chrome",
- "url": "http://localhost:4000",
- "sourceMapPathOverrides": {
- "meteor://💻app/*": "${workspaceFolder}/*"
- },
- "userDataDir": "${env:HOME}/.vscode/chrome"
- },
- {
- "type": "node",
- "request": "launch",
- "name": "Test: Node",
- "runtimeExecutable": "meteor",
- "runtimeArgs": [
- "test",
- "--port=4040",
- "--exclude-archs=web.browser.legacy,web.cordova",
- "--driver-package=meteortesting:mocha",
- "--settings=settings.json",
- "--raw-logs"
- ],
- "env": {
- "TEST_WATCH": "1"
- },
- "outputCapture": "std",
- "timeout": 60000
- }
- ],
- "compounds": [
- {
- "name": "Meteor: All",
- "configurations": ["Meteor: Node", "Meteor: Chrome"]
- }
- ]
- }
|