[css] Add css launch config for testing grammar

This commit is contained in:
Pine Wu 2018-06-18 10:31:13 -07:00
parent 2e5253d493
commit 79b64c4f81

14
extensions/css/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Grammar",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
]
}
]
}