From cb8f820d73525f637b648a0f8c33157f70bbd535 Mon Sep 17 00:00:00 2001 From: Alex Shnitman Date: Mon, 1 Feb 2021 22:53:31 +0200 Subject: upgrade dependencies (migrate to Angular 10) --- .vscode/launch.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index 4b2e858..a341190 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,8 +9,15 @@ "type": "python", "request": "launch", "program": "${workspaceFolder}/app/main.py", - "env": { - "DOWNLOAD_DIR": "${env:USERPROFILE}/Downloads", + "windows": { + "env": { + "DOWNLOAD_DIR": "${env:USERPROFILE}/Downloads", + } + }, + "osx": { + "env": { + "DOWNLOAD_DIR": "${env:HOME}/Downloads", + } }, "console": "integratedTerminal" } -- cgit