From 4e830f9ea1450aeaa67b2e3955e16deae4ba5c04 Mon Sep 17 00:00:00 2001 From: DScoNOIZ Date: Fri, 24 Apr 2026 18:35:44 +0000 Subject: [PATCH] Delete .vscode directory --- .vscode/extensions.json | 12 ------- .vscode/launch.json | 29 ---------------- .vscode/settings.json | 14 -------- .vscode/tasks.json | 74 ----------------------------------------- 4 files changed, 129 deletions(-) delete mode 100644 .vscode/extensions.json delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index a7c590fca9..0000000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode", - "csstools.postcss", - "bradlc.vscode-tailwindcss", - "connor4312.esbuild-problem-matchers", - "yoavbls.pretty-ts-errors" - ] -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 5f023be65b..0000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,29 +0,0 @@ -// A launch configuration that compiles the extension and then opens it inside a new window -// 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": "Run Extension", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": ["--extensionDevelopmentPath=${workspaceFolder}/src"], - "sourceMaps": true, - "outFiles": ["${workspaceFolder}/src/dist/**/*.js"], - "preLaunchTask": "${defaultBuildTask}", - "env": { - "NODE_ENV": "development", - "VSCODE_DEBUG_MODE": "true" - }, - "resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"], - "presentation": { - "hidden": false, - "group": "tasks", - "order": 1 - } - } - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6eb636c982..0000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,14 +0,0 @@ -// Place your settings in this file to overwrite default and user settings. -{ - "files.exclude": { - "out": false, // set this to true to hide the "out" folder with the compiled JS files - "dist": false // set this to true to hide the "dist" folder with the compiled JS files - }, - "search.exclude": { - "out": true, // set this to false to include "out" folder in search results - "dist": true // set this to false to include "dist" folder in search results - }, - // Turn off tsc task auto detection since we have the necessary tasks as npm scripts - "typescript.tsc.autoDetect": "off", - "vitest.disableWorkspaceWarning": true -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 549a1174a9..0000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,74 +0,0 @@ -// See https://go.microsoft.com/fwlink/?LinkId=733558 -// for the documentation about the tasks.json format -{ - "version": "2.0.0", - "tasks": [ - { - "label": "watch", - "dependsOn": ["watch:webview", "watch:bundle", "watch:tsc"], - "presentation": { - "reveal": "never" - }, - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "watch:webview", - "type": "shell", - "command": "pnpm --filter @roo-code/vscode-webview dev", - "group": "build", - "problemMatcher": { - "owner": "vite", - "pattern": { - "regexp": "^$" - }, - "background": { - "activeOnStart": true, - "beginsPattern": ".*VITE.*", - "endsPattern": ".*Local:.*" - } - }, - "isBackground": true, - "presentation": { - "group": "watch", - "reveal": "always" - } - }, - { - "label": "watch:bundle", - "type": "shell", - "command": "npx turbo watch:bundle", - "group": "build", - "problemMatcher": { - "owner": "esbuild", - "pattern": { - "regexp": "^$" - }, - "background": { - "activeOnStart": true, - "beginsPattern": "esbuild-problem-matcher#onStart", - "endsPattern": "esbuild-problem-matcher#onEnd" - } - }, - "isBackground": true, - "presentation": { - "group": "watch", - "reveal": "always" - } - }, - { - "label": "watch:tsc", - "type": "shell", - "command": "npx turbo watch:tsc", - "group": "build", - "problemMatcher": "$tsc-watch", - "isBackground": true, - "presentation": { - "group": "watch", - "reveal": "always" - } - } - ] -}