You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@
29
29
"workspaceContains:**/compile_commands.json",
30
30
"workspaceContains:**/compile_flags.txt",
31
31
"workspaceContains:**/buildServer.json",
32
+
"workspaceContains:**/.bsp/*.json",
32
33
"onDebugResolve:swift-lldb",
33
34
"onDebugResolve:swift"
34
35
],
@@ -546,6 +547,22 @@
546
547
"markdownDescription": "Search sub-folders of workspace folder for Swift Packages at start up.",
547
548
"scope": "machine-overridable"
548
549
},
550
+
"swift.ignoreSearchingForPackagesInSubfolders": {
551
+
"type": "array",
552
+
"items": {
553
+
"type": "string"
554
+
},
555
+
"default": [
556
+
".",
557
+
".build",
558
+
"Packages",
559
+
"out",
560
+
"bazel-out",
561
+
"bazel-bin"
562
+
],
563
+
"markdownDescription": "A list of folders to ignore when searching sub-folders for Swift Packages. The `swift.searchSubfoldersForPackages` must be `true` for this setting to have an effect. Always use forward-slashes in glob expressions regardless of platform. This is combined with VS Code's `files.exclude` setting.",
0 commit comments