-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Description
Version:
Windows 10
angular-cli: 1.0.0-beta.8
node: 6.2.2
os: win32 x64
I changed nothing in the code, I am just trying to get it working with Visual Studio Code :-)
Here is my launch.json content:
`
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch index.html with sourcemaps",
"type": "chrome",
"request": "launch",
"file": "${workspaceRoot}/src/index.html",
"sourceMaps": true,
"webRoot": "${workspaceRoot}/dist/"
},
{
"name": "Launch localhost with sourcemaps",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200/index.html",
"sourceMaps": true,
"webRoot": "${workspaceRoot}/dist/"
},
{
"name": "Attach with sourcemaps",
"type": "chrome",
"request": "attach",
"port": 9222,
"sourceMaps": true,
"webRoot": "${workspaceRoot}/dist/"
}
]
}
`
MrRoundRobin, jeremysu0131 and phil-homecu