File tree 2 files changed +19
-37
lines changed
2 files changed +19
-37
lines changed Original file line number Diff line number Diff line change 8
8
"request" : " launch" ,
9
9
"runtimeExecutable" : " ${execPath}" ,
10
10
"args" : [" --extensionDevelopmentPath=${workspaceRoot}" , " ${workspaceFolder}/testfiles" ],
11
- "stopOnEntry" : false ,
12
11
"sourceMaps" : true ,
13
- "outFiles" : [" ${workspaceRoot}/dist/**/*.js" ]
14
- },
15
- {
16
- "name" : " Attach to Server" ,
17
- "type" : " node" ,
18
- "request" : " attach" ,
19
- "port" : 6004 ,
20
- "sourceMaps" : true ,
21
- "address" : " localhost" ,
22
- "protocol" : " inspector" ,
23
- "outFiles" : [" ${workspaceRoot}/dist/**/*.js" ]
12
+ "outFiles" : [" ${workspaceRoot}/dist/**/*.js" , " ${workspaceRoot}/dist/**/*.js.map" ],
13
+ "autoAttachChildProcesses" : true ,
14
+ "preLaunchTask" : {
15
+ "type" : " npm" ,
16
+ "script" : " watch"
17
+ }
24
18
}
25
19
]
26
20
}
Original file line number Diff line number Diff line change 3
3
// for the documentation about the tasks.json format
4
4
"version" : " 2.0.0" ,
5
5
"tasks" : [
6
- {
7
- "type" : " npm" ,
8
- "script" : " webpack-dev" ,
9
- "isBackground" : true ,
10
- "group" : {
11
- "kind" : " build" ,
12
- "isDefault" : true
13
- },
14
- "presentation" : {
15
- "reveal" : " never" ,
16
- "panel" : " dedicated"
17
- },
18
- "problemMatcher" : [" $tsc-watch" ]
19
- },
20
- {
21
- "type" : " npm" ,
22
- "script" : " webpack" ,
23
- "isBackground" : false ,
24
- "group" : " build" ,
25
- "presentation" : {
26
- "reveal" : " never" ,
27
- "panel" : " dedicated"
28
- },
29
- "problemMatcher" : [" $tsc" ]
30
- }
6
+ {
7
+ "type" : " npm" ,
8
+ "script" : " watch" ,
9
+ "isBackground" : true ,
10
+ "group" : {
11
+ "kind" : " build" ,
12
+ "isDefault" : true
13
+ },
14
+ "presentation" : {
15
+ "panel" : " dedicated" ,
16
+ "reveal" : " never"
17
+ }
18
+ }
31
19
]
32
20
}
You can’t perform that action at this time.
0 commit comments