We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359442f commit a4a062cCopy full SHA for a4a062c
src/extension.ts
@@ -232,7 +232,13 @@ export function activate(context: ExtensionContext) {
232
if (folders) {
233
const ignored = config.get<string[]>("ignoredFolders", ["**/node_modules/**"]);
234
235
- const watcher = watch(folders, { ignored, ignoreInitial: false })
+ const watcher = watch(folders, {
236
+ ignored,
237
+ ignoreInitial: false,
238
+ ignorePermissionErrors: true,
239
+ useFsEvents: true,
240
+ followSymlinks: false
241
+ })
242
.on("add", key => provider.files.add(key))
243
.on("unlink", key => provider.files.delete(key))
244
.on("change", key => provider.cache.delete(key));
0 commit comments