Procházet zdrojové kódy

Adding vscode configuration

David Catuhe před 8 roky
rodič
revize
887b125a8f
1 změnil soubory, kde provedl 21 přidání a 0 odebrání
  1. 21 0
      .vscode/launch.json

+ 21 - 0
.vscode/launch.json

@@ -0,0 +1,21 @@
+{
+    "version": "0.1.0",
+    "configurations": [
+        {
+            "name": "Launch playground (Edge)",
+            "type": "edge",
+            "request": "launch",
+            "url": "http://localhost/playground/index-local.html",
+            "webRoot": "${workspaceRoot}/",
+            "sourceMaps": true
+        },
+        {
+            "name": "Launch playground (Chrome)",
+            "type": "chrome",
+            "request": "launch",
+            "url": "http://localhost/playground/index-local.html",
+            "webRoot": "${workspaceRoot}/",
+            "sourceMaps": true
+        }
+    ]
+}