-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
included the .vscode folder as I had to manually configure sourceMapP…
…athOverrides in launch.json in order to allow debugging with vs code chrome debugger: angular/angular-cli#2453
- Loading branch information
gstanescu
committed
Nov 18, 2016
1 parent
233b1e2
commit 9a0023b
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Chrome against localhost, with sourcemaps", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "http://localhost:4200", | ||
"sourceMaps": true, | ||
"webRoot": "${workspaceRoot}", | ||
"sourceMapPathOverrides": { | ||
"webpack:///C:*":"C:/*" | ||
} | ||
}, | ||
{ | ||
"name": "Attach to Chrome, with sourcemaps", | ||
"type": "chrome", | ||
"request": "attach", | ||
"port": 9222, | ||
"sourceMaps": true, | ||
"webRoot": "${workspaceRoot}", | ||
"sourceMapPathOverrides": { | ||
"webpack:///C:*":"C:/*" | ||
} | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "./node_modules/typescript/lib" | ||
} |