Skip to content

Commit effc079

Browse files
AndrewKushnirjosephperrott
authored andcommitted
build: use "outFiles" in .vscode/launch.json to speed up debugging sessions (#39848)
This commit adds the "outFiles" config options into the .vscode/recommended-launch.json, which helps speed up the startup time of a debugging session by limiting the number of files that should be loaded. PR Close #39848
1 parent 356a256 commit effc079

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.vscode/recommended-launch.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"remoteRoot": "${workspaceRoot}",
1717
"stopOnEntry": false,
1818
"timeout": 600000,
19+
"outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
1920
},
2021
{
2122
"name": "Attach to bazel test ... --config=debug (no source maps)",
@@ -29,6 +30,7 @@
2930
"remoteRoot": "${workspaceRoot}",
3031
"stopOnEntry": false,
3132
"timeout": 600000,
33+
"outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
3234
},
3335
{
3436
"name": "IVY:packages/core/test/acceptance",
@@ -46,6 +48,7 @@
4648
"restart": true,
4749
"sourceMaps": true,
4850
"timeout": 600000,
51+
"outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
4952
},
5053
{
5154
"name": "IVY:packages/core/test/render3",
@@ -63,6 +66,7 @@
6366
"restart": true,
6467
"sourceMaps": true,
6568
"timeout": 600000,
69+
"outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
6670
},
6771
{
6872
"name": "IVY:packages/core/test",
@@ -80,6 +84,7 @@
8084
"restart": true,
8185
"sourceMaps": true,
8286
"timeout": 600000,
87+
"outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
8388
},
8489
]
8590
}

0 commit comments

Comments
 (0)