diff options
-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": [ |