Pārlūkot izejas kodu

:gear: Adds launch.json

Jeff Triplett 1 gadu atpakaļ
vecāks
revīzija
5d6da7e16c
1 mainītis faili ar 17 papildinājumiem un 0 dzēšanām
  1. 17 0
      .vscode/launch.json

+ 17 - 0
.vscode/launch.json

@@ -0,0 +1,17 @@
+{
+  "version": "0.2.0",
+  "configurations": [
+    {
+      "name": "Serve Jekyll Site",
+      "type": "shell",
+      "request": "launch",
+      "command": "bundle exec jekyll serve --livereload",
+      "cwd": "${workspaceFolder}",
+      "presentation": {
+        "reveal": "always",
+        "panel": "new"
+      },
+      "problemMatcher": []
+    }
+  ]
+}