Extension code.

This commit is contained in:
Peng Lyu
2018-05-19 13:57:44 -07:00
parent b8c4b26aae
commit 6712e12c47
6 changed files with 950 additions and 38 deletions

18
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,18 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/ext-src"
}
]
}