| 1234567891011121314151617181920212223242526272829 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "type": "node-terminal",
- "name": "start:debug",
- "request": "launch",
- "command": "npm run start:debug",
- "cwd": "${workspaceFolder}",
- "envFile": "${workspaceFolder}/.env.dev"
- },
- {
- "type": "node-terminal",
- "name": "[local]start:debug",
- "request": "launch",
- "command": "npm run start:debug",
- "cwd": "${workspaceFolder}",
- "envFile": "${workspaceFolder}/.env.local"
- },
- {
- "type": "node-terminal",
- "name": "[local1]start:debug",
- "request": "launch",
- "command": "npm run start:debug",
- "cwd": "${workspaceFolder}",
- "envFile": "${workspaceFolder}/.env.local.1"
- }
- ]
- }
|