Hi. Every day see a message that CodeMix Engine is unable to watch for file changes in this large workspace. Where it has found so large workspace? In my settings.json i have disabled all directories with external libraries:
“files.watcherExclude”: {
“**/.git/objects/**”: true,
“**/.git/subtree-cache/**”: true,
“**/node_modules/*/**”: true,
“**/vendor/*/**”: true
}
So actual workspace should consist of 154 files:
find -type f | grep -v node_modules | grep -v vendor | grep -v .git | wc -l
154
So about what this message?