15fc6f25fd
Problem: We need to deliver a VSCode extension but the one we use currently is located in a separate repo, requires manual patches and does not support ReasonLIGO. Solution: Add our extension that supports PascaLIGO and ReasonLIGO; CamLIGO is WIP.
18 lines
477 B
JSON
18 lines
477 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"name": "Launch Client",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
|
|
"outFiles": ["${workspaceRoot}/client/out/**/*.js"],
|
|
"preLaunchTask": {
|
|
"type": "npm",
|
|
"script": "watch"
|
|
}
|
|
}
|
|
]
|
|
}
|