Remove now uneeded vscode configuration
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 29 Oct 2022 12:57:06 +0000 (14:57 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 29 Oct 2022 12:57:06 +0000 (14:57 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.vscode/launch.json
.vscode/tasks.json [deleted file]

index 7cca9d16ce2cb3eb187c02d22df8fda68bfed584..075bb3f99ecac7fdbc71a7f8df7ca0d6a958b370 100644 (file)
@@ -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": ["<node_internals>/**"],
@@ -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": ["<node_internals>/**"],
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644 (file)
index 62d3416..0000000
+++ /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"
-    }
-  ]
-}