This commit is contained in:
Benjamin Pasero
2019-04-18 10:09:12 +02:00
parent da14adc183
commit cdd844ab68
4 changed files with 796 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
@ -11,7 +11,7 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
"preLaunchTask": "tsc: watch - tsconfig.json"
"preLaunchTask": "npm: watch"
},
{
"name": "Launch Tests",
@ -22,7 +22,7 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"preLaunchTask": "tsc: watch - tsconfig.json"
"preLaunchTask": "npm: watch"
}
]
}