File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 18
18
}
19
19
],
20
20
"configurations" : [
21
+ // Run rollup using the config file which is in the currently active tab.
22
+ {
23
+ "name" : " Debug rollup (config from open file)" ,
24
+ "type" : " pwa-node" ,
25
+ "cwd" : " ${workspaceFolder}/packages/${input:getPackageName}" ,
26
+ "request" : " launch" ,
27
+ "runtimeExecutable" : " yarn" ,
28
+ "runtimeArgs" : [
29
+ " rollup" ,
30
+ " -c" ,
31
+ " ${file}"
32
+ ],
33
+ "skipFiles" : [
34
+ " <node_internals>/**"
35
+ ],
36
+ "outFiles" : [
37
+ " ${workspaceFolder}/**/*.js" ,
38
+ " !**/node_modules/**"
39
+ ],
40
+ "sourceMaps" : true ,
41
+ "smartStep" : true ,
42
+ "internalConsoleOptions" : " openOnSessionStart" ,
43
+ "outputCapture" : " std"
44
+ },
21
45
// Run a specific test file in watch mode (must have file in currently active tab when hitting the play button).
22
46
// NOTE: If you try to run this and VSCode complains that the command `shellCommand.execute` can't be found, go
23
47
// install the recommended extension Tasks Shell Input.
You can’t perform that action at this time.
0 commit comments