pineafan | 4f164f3 | 2022-02-26 22:07:12 +0000 | [diff] [blame^] | 1 | { |
| 2 | // Use IntelliSense to learn about possible attributes. |
| 3 | // Hover to view descriptions of existing attributes. |
| 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
| 5 | "version": "0.2.0", |
| 6 | "configurations": [ |
| 7 | { |
| 8 | "command": "npm run dev", |
| 9 | "name": "Run npm start", |
| 10 | "request": "launch", |
| 11 | "type": "node-terminal" |
| 12 | }, |
| 13 | { |
| 14 | "type": "pwa-node", |
| 15 | "request": "launch", |
| 16 | "name": "Launch Program", |
| 17 | "skipFiles": [ |
| 18 | "<node_internals>/**" |
| 19 | ], |
| 20 | "program": "${workspaceFolder}/dist/index.js", |
| 21 | "preLaunchTask": "tsc: build - tsconfig.json", |
| 22 | "outFiles": [ |
| 23 | "${workspaceFolder}/dist/**/*.js" |
| 24 | ] |
| 25 | } |
| 26 | ] |
| 27 | } |