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

index d76d6df0b90f350c6fe6821cba02d9608b03a3f4..19af46e971a2e31cc1c9c3d76c3b387968a413b3 100644 (file)
@@ -9,7 +9,6 @@
       "request": "launch",
       "name": "Launch Tests Debug",
       "cwd": "${workspaceFolder}",
-      // "preLaunchTask": "Development build",
       "runtimeExecutable": "npm",
       "runtimeArgs": ["run-script", "test:debug"],
       "skipFiles": ["<node_internals>/**"],
@@ -20,7 +19,6 @@
       "request": "launch",
       "name": "Launch Benchmarks Debug",
       "cwd": "${workspaceFolder}",
-      // "preLaunchTask": "Development build",
       "runtimeExecutable": "npm",
       "runtimeArgs": ["run-script", "benchmark:debug"],
       "skipFiles": ["<node_internals>/**"],
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644 (file)
index a6d60cd..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "version": "2.0.0",
-  "tasks": [
-    {
-      "label": "Build",
-      "type": "npm",
-      "script": "build:prod"
-    },
-    {
-      "label": "Development build",
-      "type": "npm",
-      "script": "build"
-    }
-  ]
-}