From 6280f2af8a9a129e3986cc4bffb900a8b8507ba2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 29 Oct 2022 14:43:59 +0200 Subject: [PATCH] Remove deprecated vscode configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .vscode/launch.json | 2 -- .vscode/tasks.json | 15 --------------- 2 files changed, 17 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json index d76d6df0..19af46e9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,6 @@ "request": "launch", "name": "Launch Tests Debug", "cwd": "${workspaceFolder}", - // "preLaunchTask": "Development build", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "test:debug"], "skipFiles": ["/**"], @@ -20,7 +19,6 @@ "request": "launch", "name": "Launch Benchmarks Debug", "cwd": "${workspaceFolder}", - // "preLaunchTask": "Development build", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "benchmark:debug"], "skipFiles": ["/**"], diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index a6d60cd7..00000000 --- a/.vscode/tasks.json +++ /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" - } - ] -} -- 2.34.1