| 123456789101112131415161718192021 |
- {
- "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"
- }
- ]
- }
|