Skip to content

Commit 9ca093b

Browse files
committed
Add recommended vscode extensions and launch file for debugging
1 parent 5048e8f commit 9ca093b

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.vscode/extensions.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"recommendations": [
3+
"christian-kohler.path-intellisense",
4+
"dbaeumer.vscode-eslint",
5+
"esbenp.prettier-vscode",
6+
"msjsdiag.debugger-for-chrome",
7+
"pkief.material-icon-theme",
8+
"ritwickdey.liveserver",
9+
],
10+
11+
"unwantedRecommendations": []
12+
}

.vscode/launch.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Launch Chrome against localhost",
11+
"url": "http://localhost:5500/code/Section-3-The-TypeScript-Compiler-(and-its-Configuration)/44-Debugging-With-Visual-Studio-Code/dist/index.html",
12+
"webRoot": "${workspaceFolder}/code/Section-3-The-TypeScript-Compiler-(and-its-Configuration)/44-Debugging-With-Visual-Studio-Code/dist/"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)