diff --git a/progress-sample/.gitignore b/progress-sample/.gitignore index 8e5962ee..c3185c35 100644 --- a/progress-sample/.gitignore +++ b/progress-sample/.gitignore @@ -1,2 +1,3 @@ out -node_modules \ No newline at end of file +node_modules +.vscode-test \ No newline at end of file diff --git a/progress-sample/.vscode/launch.json b/progress-sample/.vscode/launch.json index 886b6ad1..ced7b37a 100644 --- a/progress-sample/.vscode/launch.json +++ b/progress-sample/.vscode/launch.json @@ -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" } ] } diff --git a/progress-sample/package.json b/progress-sample/package.json index 2731df86..7ecda2b8 100644 --- a/progress-sample/package.json +++ b/progress-sample/package.json @@ -32,6 +32,7 @@ "scripts": { "vscode:prepublish": "tsc -p ./", "compile": "tsc -watch -p ./", + "watch": "tsc -watch -p ./", "postinstall": "node ./node_modules/vscode/bin/install", "test": "node ./node_modules/vscode/bin/test" },