From: Jérôme Benoit Date: Sat, 29 Oct 2022 12:57:06 +0000 (+0200) Subject: Remove now uneeded vscode configuration X-Git-Tag: v1.1.87~19 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=39efd40d46487e9266edc1acbc92b75be16b0b25;p=e-mobility-charging-stations-simulator.git Remove now uneeded vscode configuration Signed-off-by: Jérôme Benoit --- diff --git a/.vscode/launch.json b/.vscode/launch.json index 7cca9d16..075bb3f9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,7 @@ "request": "launch", "name": "Debug Simulator via npm", "cwd": "${workspaceFolder}", - "preLaunchTask": "Build", + "preLaunchTask": "npm: build", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "start:debug"], "skipFiles": ["/**"], @@ -20,6 +20,7 @@ "request": "launch", "name": "Debug Simulator Development Build via npm", "cwd": "${workspaceFolder}", + "preLaunchTask": "npm: build:dev", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "start:dev:debug"], "skipFiles": ["/**"], diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 62d34164..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Build", - "type": "npm", - "script": "build" - }, - { - "label": "Development Build", - "type": "npm", - "script": "build:dev" - } - ] -}