diff options
author | bscan <10503608+bscan@users.noreply.github.com> | 2024-02-17 13:54:47 -0500 |
---|---|---|
committer | bscan <10503608+bscan@users.noreply.github.com> | 2024-02-17 13:54:47 -0500 |
commit | c541e625d6f306c556cbfd755b335a4df64b01a2 (patch) | |
tree | bdce32073e24e86d683a3cf3109c43e645d36cb2 | |
parent | 96cafa346dd0d4741847c5affb12c84a2ab9fb0d (diff) | |
download | PerlNavigator-c541e625d6f306c556cbfd755b335a4df64b01a2.zip |
Updating launch commands because of webpack
-rw-r--r-- | .vscode/launch.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index f4aadcd..2cea2ee 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,10 +8,10 @@ "name": "Launch Client", "runtimeExecutable": "${execPath}", "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--trace-warnings"], - "outFiles": ["${workspaceRoot}/client/out/**/*.js"], + "outFiles": ["${workspaceRoot}/client/dist/**/*.js"], "preLaunchTask": { "type": "npm", - "script": "watch" + "script": "web-compile" } }, { @@ -37,7 +37,7 @@ "name": "Attach to Server", "port": 6009, "restart": true, - "outFiles": ["${workspaceRoot}/server/out/**/*.js"] + "outFiles": ["${workspaceRoot}/server/dist/**/*.js"] }, { "name": "Language Server E2E Test", @@ -46,10 +46,10 @@ "runtimeExecutable": "${execPath}", "args": [ "--extensionDevelopmentPath=${workspaceRoot}", - "--extensionTestsPath=${workspaceRoot}/client/out/test/index", + "--extensionTestsPath=${workspaceRoot}/client/dist/test/index", "${workspaceRoot}/client/testFixture" ], - "outFiles": ["${workspaceRoot}/client/out/test/**/*.js"] + "outFiles": ["${workspaceRoot}/client/dist/test/**/*.js"] } ], "compounds": [ |