Skip to content

Commit ccbce58

Browse files
committed
fix #169 webpack before launch, and use correct outFiles
1 parent 71d8bb3 commit ccbce58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"stopOnEntry": false,
1515
"sourceMaps": true,
1616
"outFiles": [
17-
"${workspaceRoot}/out/**/*.js"
17+
"${workspaceRoot}/dist/**/*.js"
1818
],
19-
"preLaunchTask": "npm: watch"
19+
"preLaunchTask": "npm: webpack"
2020
},
2121
{
2222
"name": "Launch Extension",
@@ -29,9 +29,9 @@
2929
"stopOnEntry": false,
3030
"sourceMaps": true,
3131
"outFiles": [
32-
"${workspaceRoot}/out/**/*.js"
32+
"${workspaceRoot}/dist/**/*.js"
3333
],
34-
"preLaunchTask": "npm: watch"
34+
"preLaunchTask": "npm: webpack"
3535
},
3636
{
3737
"name": "Extension Tests",

0 commit comments

Comments
 (0)