From 60d342ceb76decd8b752351e82e99fc456ec3f13 Mon Sep 17 00:00:00 2001 From: Erick Zhao Date: Tue, 26 Nov 2024 14:14:06 -0800 Subject: [PATCH] remove outdated launch configs --- .vscode/launch.json | 49 --------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 4203b51cb..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Current file", - "program": "${file}", - "request": "launch", - "cwd": "${workspaceFolder}", - "skipFiles": ["/**"], - "type": "pwa-node", - "console": "integratedTerminal" - }, - { - "type": "node", - "name": "vscode-jest-tests", - "request": "launch", - "program": "${workspaceFolder}/node_modules/.bin/jest", - "args": ["--runInBand"], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "internalConsoleOptions": "neverOpen", - "disableOptimisticBPs": true, - "windows": { - "program": "${workspaceFolder}/node_modules/jest/bin/jest" - } - }, - { - "type": "pwa-node", - "request": "launch", - "name": "Prebuild", - "skipFiles": ["/**"], - "program": "${workspaceFolder}/scripts/pre-build.js", - "console": "integratedTerminal", - "cwd": "${workspaceFolder}" - }, - { - "type": "pwa-node", - "request": "launch", - "name": "Create documentation", - "skipFiles": ["/**"], - "program": "${workspaceFolder}/create-electron-documentation/index.js", - "console": "integratedTerminal", - "cwd": "${workspaceFolder}/docs/how-to" - } - ] -}