Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit 0e21852

Browse files
PanayotCankovVasil Chimev
authored and
Vasil Chimev
committed
refactor(debugging): Add vscode launch options to allow debugging the webpack process (#364)
This will allow debuggin the AngularApp's webpack process from VSCode, open at the root of the repo.
1 parent 0ff5b43 commit 0e21852

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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": "node",
9+
"request": "launch",
10+
"name": "AngularApp Webpack",
11+
"cwd": "${workspaceFolder}/demo/AngularApp",
12+
"program": "${workspaceFolder}/demo/AngularApp/node_modules/.bin/webpack",
13+
"args": [ "--env.android", "--env.aot" ],
14+
"runtimeArgs": [ "--preserve-symlinks" ],
15+
"stopOnEntry": true,
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)