From 79b64c4f816101679485281cbb9b545756e2b56b Mon Sep 17 00:00:00 2001 From: Pine Wu Date: Mon, 18 Jun 2018 10:31:13 -0700 Subject: [PATCH] [css] Add css launch config for testing grammar --- extensions/css/.vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 extensions/css/.vscode/launch.json diff --git a/extensions/css/.vscode/launch.json b/extensions/css/.vscode/launch.json new file mode 100644 index 00000000000..2217bbd0770 --- /dev/null +++ b/extensions/css/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Grammar", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceRoot}" + ] + } + ] +}