about summary refs log tree commit diff stats
path: root/editor/VSCode/.vscode/launch.json
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-11-08 18:49:15 -0800
committerKartik Agaram <vc@akkartik.com>2021-11-08 18:49:15 -0800
commit2bac01fb7b4e43a2f7e707b7848d1b925d598cda (patch)
treeee776cf03a887b5e341d12f250175e55dc148250 /editor/VSCode/.vscode/launch.json
parent11a191c2906fbaa2d80192da833b727984cf8f94 (diff)
downloadmu-2bac01fb7b4e43a2f7e707b7848d1b925d598cda.tar.gz
syntax highlighting for Visual Studio Code
Diffstat (limited to 'editor/VSCode/.vscode/launch.json')
-rw-r--r--editor/VSCode/.vscode/launch.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/editor/VSCode/.vscode/launch.json b/editor/VSCode/.vscode/launch.json
new file mode 100644
index 00000000..0e191b59
--- /dev/null
+++ b/editor/VSCode/.vscode/launch.json
@@ -0,0 +1,17 @@
+// A launch configuration that launches the extension inside a new window
+// 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": [
+        {
+            "name": "Extension",
+            "type": "extensionHost",
+            "request": "launch",
+            "args": [
+                "--extensionDevelopmentPath=${workspaceFolder}"
+            ]
+        }
+    ]
+}
\ No newline at end of file