Last active
May 13, 2018 21:40
-
-
Save webprofusion-chrisc/41b0653fa69c8bb7061d47ba245832d2 to your computer and use it in GitHub Desktop.
Debugging an Ionic 2 app using Visual Studio Code
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Attach Ionic 2 App with sourcemaps", | |
"type": "chrome", | |
"request": "attach", | |
"port": 9222, | |
"sourceMaps": true, | |
"url": "http://localhost:8100/" | |
}, | |
{ | |
"name": "Launch Ionic 2 App with sourcemaps", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost:8100/", | |
"webRoot": "${workspaceRoot}/www", | |
"sourceMaps": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you. I was checking exactly for this.