192
// copy all the enabled paths to the result list
193
for (const [path, enabledValue] of Object.entries(value)) {
194
>
// we already added the default source folders, so skip them
config.ts
195
>
if ((enabledValue === false) || defaultFolderPathsSet.has(path)) {
196
continue;
197
}
198
199
// determine location type in the general case
200
>
const storage = isTildePath(path) ? PromptsStorage.user : PromptsStorage.local;
config.ts
201
>
paths.push({ path, source: storage === PromptsStorage.local ? PromptFileSource.ConfigWorkspace : PromptFileSource.ConfigPersonal, storage });
202
>
}
203
204
return paths;