From 0020fed7724d93e98199fb7904122af84d6e715b Mon Sep 17 00:00:00 2001 From: Y8 <205629119+abdullrahman1y@users.noreply.github.com> Date: Wed, 2 Apr 2025 22:04:41 +0000 Subject: [PATCH 1/2] Initial commit From 63824345e182583e28224de314f86778c7a40b7a Mon Sep 17 00:00:00 2001 From: Y8 <205629119+abdullrahman1y@users.noreply.github.com> Date: Wed, 2 Apr 2025 22:04:41 +0000 Subject: [PATCH 2/2] Pending changes exported from your codespace --- .vscode/launch.json | 53 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..bccb6a3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,53 @@ +{ + // استخدم IntelliSense لمعرفة الخصائص الممكنة. + // مرر الماوس لرؤية أوصاف الخصائص الموجودة. + // لمزيد من المعلومات، يرجى زيارة: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "args": [ + "task" + ], + "name": "Gulp task", + "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js", + "request": "launch", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "name": "Launch Chrome", + "request": "launch", + "type": "chrome", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "name": "Launch Extension", + "outFiles": [ + "${workspaceFolder}/out/**/*.js" + ], + "preLaunchTask": "npm", + "request": "launch", + "type": "extensionHost" + }, + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + { + "type": "chrome", + "request": "launch", + "name": "إطلاق Chrome ضد localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file