Last active
December 24, 2016 15:18
-
-
Save javaeeeee/c8a8acb27462a0d223e9132acb2deaca to your computer and use it in GitHub Desktop.
launch.json file that starts lite-server and opens AngularJS application in a Chrome tab
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": "Launch Chrome against localhost, with sourcemaps", | |
| "type": "chrome", | |
| "request": "launch", | |
| "url": "http://localhost:3000", | |
| "sourceMaps": true, | |
| "webRoot": "${workspaceRoot}", | |
| "preLaunchTask": "startServer" | |
| }, | |
| { | |
| "name": "Attach to Chrome, with sourcemaps", | |
| "type": "chrome", | |
| "request": "attach", | |
| "url": "http://localhost:3000", | |
| "port": 9222, | |
| "sourceMaps": true, | |
| "webRoot": "${workspaceRoot}" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment