File tree Expand file tree Collapse file tree 2 files changed +29
-52
lines changed
Expand file tree Collapse file tree 2 files changed +29
-52
lines changed Original file line number Diff line number Diff line change 1- // A launch configuration that compiles the extension and then opens it inside a new window
21{
3- "version" : " 0.1 .0" ,
2+ "version" : " 0.2 .0" ,
43 "configurations" : [
54 {
65 "name" : " Launch Extension" ,
76 "type" : " extensionHost" ,
87 "request" : " launch" ,
9- "runtimeExecutable" : " ${execPath}" ,
10- "args" : [" --extensionDevelopmentPath=${workspaceRoot}" ],
11- "stopOnEntry" : false ,
12- "sourceMaps" : true ,
13- "preLaunchTask" : " npm" ,
8+ "args" : [
9+ " --extensionDevelopmentPath=${workspaceFolder}"
10+ ],
1411 "outFiles" : [
1512 " ${workspaceFolder}/dist/**/*.js"
1613 ]
17- },
18- {
19- "name" : " Launch Tests" ,
20- "type" : " extensionHost" ,
21- "request" : " launch" ,
22- "runtimeExecutable" : " ${execPath}" ,
23- "args" : [" --extensionDevelopmentPath=${workspaceRoot}" , " --extensionTestsPath=${workspaceRoot}/out/test/suite/index" ],
24- "stopOnEntry" : false ,
25- "sourceMaps" : true ,
26- "outFiles" : [
27- " ${workspaceRoot}/out/test/**/*.js"
28- ]
2914 }
30- ]
15+ ],
16+ "compounds" : []
3117}
Original file line number Diff line number Diff line change 1- // See https://go.microsoft.com/fwlink/?LinkId=733558
2- // for the documentation about the tasks.json format
31{
4- "version" : " 2.0.0" ,
5- "tasks" : [
6- {
7- "type" : " npm" ,
8- "script" : " watch" ,
9- "problemMatcher" : [
10- " $ts-webpack-watch" ,
11- " $tslint-webpack-watch"
12- ],
13- "isBackground" : true ,
14- "presentation" : {
15- "reveal" : " never"
16- },
17- "group" : {
18- "kind" : " build" ,
19- "isDefault" : true
20- }
21- },
22- {
23- "type" : " npm" ,
24- "script" : " test-watch" ,
25- "problemMatcher" : " $tsc-watch" ,
26- "isBackground" : true ,
27- "presentation" : {
28- "reveal" : " never"
29- },
30- "group" : " build"
31- }
32- ]
33- }
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " npm:compile" ,
6+ "type" : " shell" ,
7+ "command" : [
8+ " npm" ,
9+ " run" ,
10+ " compile"
11+ ],
12+ "problemMatcher" : [
13+ " $tsc"
14+ ],
15+ "presentation" : {
16+ "reveal" : " silent"
17+ },
18+ "group" : {
19+ "kind" : " build" ,
20+ "isDefault" : true
21+ }
22+ }
23+ ]
24+ }
You can’t perform that action at this time.
0 commit comments