Last active
July 29, 2018 18:56
-
-
Save nobitagit/9a741a1b044d5eb0c175766fe11cecd9 to your computer and use it in GitHub Desktop.
VSCode ES2017 ingle file debug
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
{ | |
"name": "Single JS file", | |
"type": "node", | |
"request": "launch", | |
"program": "${file}", | |
"stopOnEntry": false, | |
"args": [], | |
"cwd": "${workspaceRoot}", | |
"preLaunchTask": null, | |
"runtimeExecutable": null, | |
"runtimeArgs": [ | |
" - nolazy", | |
" - require", | |
"babel-register" | |
], | |
"env": { | |
"NODE_ENV": "development" | |
}, | |
"console": "internalConsole", | |
"sourceMaps": true, | |
"outFiles": [] | |
} |
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
"babel": { | |
"presets": [ | |
"es2015" | |
], | |
"sourceMaps": true, | |
"retainLines": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment