Created
April 6, 2018 04:03
-
-
Save sandalsoft/3d294d36e8959d2974a452d055d5222d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Launch Program", | |
| "program": "${workspaceFolder}/dist/index.js", | |
| "cwd": "${workspaceRoot}", | |
| "preLaunchTask": "npm: build", | |
| "runtimeArgs": ["--nolazy"], | |
| "env": { | |
| "NODE_ENV": "development" | |
| }, | |
| "console": "internalConsole", | |
| "sourceMaps": true, | |
| "outFiles": ["${workspaceRoot}/dist/**"] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment