From 87ddfbcdb6c954390df305929e9bcddc0a20fe44 Mon Sep 17 00:00:00 2001 From: MultiMote <contact@mmote.ru> Date: Sun, 16 Feb 2025 11:45:04 +0300 Subject: [PATCH] Remove .vscode --- .gitignore | 3 +++ .vscode/launch.json | 20 -------------------- 2 files changed, 3 insertions(+), 20 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 3b462cb..644dfdd 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,6 @@ Thumbs.db # Vite vite.config.js.timestamp-* vite.config.ts.timestamp-* + +/tmp +/.vscode \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 069657a..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,20 +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": [ - - { - "type": "node-terminal", - "name": "Run Script: dev", - "request": "launch", - "command": "npm run dev", - "cwd": "${workspaceFolder}", - "env": { - "TSHARK_PATH": "C:\\Program Files\\Wireshark\\tshark.exe", - "TMP_DIR": "tmp" - } - } - ] -}