diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f4651a2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,56 @@ +{ + // استخدم IntelliSense لمعرفة المزيد عن السمات الممكنة. + // أشر لعرض وصف السمات الموجودة. + // لمزيد من المعلومات، قم بزيارة: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Edge", + "request": "launch", + "type": "msedge", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "name": "nodemon", + "program": "${workspaceFolder}/app.js", + "request": "launch", + "restart": true, + "runtimeExecutable": "nodemon", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "name": "Launch Integrated Browser", + "request": "launch", + "type": "editor-browser", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + { + "type": "chrome", + "request": "launch", + "name": "تشغيل كروم باستخدام المضيف المحلي", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file