2018-07-30 13:58:49 -05:00
|
|
|
{
|
|
|
|
// 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": "Launch Extension",
|
|
|
|
"type": "extensionHost",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "${execPath}",
|
2018-08-16 05:46:31 -05:00
|
|
|
"args": ["--extensionDevelopmentPath='./'"],
|
2018-08-24 05:41:25 -05:00
|
|
|
"env": {
|
|
|
|
"RUST_LOG": "m=trace"
|
|
|
|
},
|
2018-07-30 13:58:49 -05:00
|
|
|
"stopOnEntry": false,
|
|
|
|
"sourceMaps": true,
|
2018-08-16 05:46:31 -05:00
|
|
|
"outFiles": [ "./out/src/**/*.js" ],
|
2018-07-30 13:58:49 -05:00
|
|
|
"preLaunchTask": "npm"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|