| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "单进程",
- "type": "node",
- "request": "launch",
- "program": "${workspaceRoot}/out/launch_debug.js",
- "stopOnEntry": false,
- "args": [],
- "cwd": "${workspaceRoot}",
- "preLaunchTask": null,
- "runtimeExecutable": null,
- "runtimeArgs": [
- "--nolazy"
- ],
- "env": {
- "NODE_ENV": "development",
- "secure": "false"
- },
- "sourceMaps": true
- },
- {
- "name": "多进程",
- "type": "node",
- "request": "launch",
- "program": "${workspaceRoot}/out/launch_release.js",
- "stopOnEntry": false,
- "args": [],
- "cwd": "${workspaceRoot}",
- "preLaunchTask": null,
- "runtimeExecutable": null,
- "runtimeArgs": [
- "--nolazy"
- ],
- "env": {
- "NODE_ENV": "production",
- "secure": "false"
- },
- "sourceMaps": true
- },
- {
- "name": "网页",
- "type": "node",
- "request": "launch",
- "program": "${workspaceRoot}/webtool/main.js",
- "stopOnEntry": false,
- "args": [],
- "cwd": "${workspaceRoot}",
- "preLaunchTask": null,
- "runtimeExecutable": null,
- "runtimeArgs": [
- "--nolazy"
- ],
- "env": {
- "NODE_ENV": "web",
- "secure": "false"
- },
- "sourceMaps": true
- }
- ]
- }
|