microsoft / TypeScript

TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
https://www.typescriptlang.org
Apache License 2.0
99.84k stars 12.36k forks source link

TypeScript file watcher holds onto folders and causes EPERM #54087

Open yinxing-ws opened 1 year ago

yinxing-ws commented 1 year ago

Does this issue occur when all extensions are disabled?: Yes/No

Steps to Reproduce:

  1. just rename or moving files/folder, and this problem occasionally.
  2. After restart vscode, the rename/moving operation completed automatically.
  3. I'm pretty sure the rename/moving operation act normally in file explorer

I have checked all below items, so I'm pretty sure there is no other process using these files except vs code.

  1. no other window opened.
  2. no vscode extension runing because I uninstall them all.
  3. only vscode using the file, It's weird because there are two records. image
bpasero commented 1 year ago

I am not sure the issue here, but it sounds unlikely its a VS Code issue, rather an issue with your configuration. Maybe an Antivirus running?

robsonsr commented 1 year ago

I was having the same problem. I resolved it removing the VSCode User version and I installing the VSCode System version:

https://update.code.visualstudio.com/1.77.3/win32-x64/stable -> working https://update.code.visualstudio.com/1.77.3/win32-x64-user/stable -> with problem

https://code.visualstudio.com/updates/v1_77

layerok commented 1 year ago

I'm encountering this too when moving folders image

For note, WebStorm doesn't have such problem

bpasero commented 1 year ago

Is there a reliable reproduce or does it happen randomly?

layerok commented 1 year ago

@bpasero

Steps to reproduce

  1. Create such project structure image
  2. Double click b.tsx file
  3. Click a.tsx
  4. Close a.tsx
  5. Try renaming c folder

https://user-images.githubusercontent.com/18424848/235309581-be1487f0-81c2-472f-9f47-d3be545649af.mp4

bpasero commented 1 year ago

I wonder if this issue is being caused by an installed extension. Can you try to run VS Code without extensions? From the command line (NOT the integrated terminal in Code), execute: code --disable-extensions and try your steps again to see if it reproduces. If you see it is an issue with the extension, please file it against the extension repository itself.

layerok commented 1 year ago

@bpasero unfortunately it reproduces even without extensions

https://user-images.githubusercontent.com/18424848/235316327-61a0f285-f702-4f54-a13d-29469cc83c98.mp4

bpasero commented 1 year ago

Hm, just to make sure, would it reproduce when you do the same with a txt file instead of tsx?

layerok commented 1 year ago

@bpasero I'll try

layerok commented 1 year ago

no it doesn't reproduce

https://user-images.githubusercontent.com/18424848/235316603-a23aaed1-7be1-4c5b-809f-a33f1357f4e6.mp4

layerok commented 1 year ago

I tried .ts and it didn't reproduce, only .tsx

bpasero commented 1 year ago

Thanks, I suspect the typescript extension to install a watcher on dedicated folders that on Windows may result in folder locking.

lorthiois commented 1 year ago

Note regarding this portion of the initial post:

Steps to Reproduce: just rename or moving files/folder, and this problem occasionally. After restart vscode, the rename/moving operation completed automatically. I'm pretty sure the rename/moving operation act normally in file explorer

I tried the 3rd one while still having VSCode open without yet restarting it. Windows gave me the usual "File in use by another program" error. After restarting VSCode and closing all running commands, I was able to move the files/folders in Windows file explorer.

CarltonHere commented 1 year ago

I also had this problem, but I found that setting typescript.tsserver.useSyntaxServer to always solved the problem. I guess there are too many files in the project directory.

ddbtrmatic commented 1 year ago

This issue occurs for me as well, and has across a number of versions of vs code and typescript. It happens somewhat randomly. For example, I just moved a directory in an angular project without any issue, and this included dozens of nested directories and files. Then I tried to do the same thing with a different directory in the same project and it fails.

I checked the directory with a file lock utility and it shows that the directory is locked by a PID that appears to be the typescript language extension (tsserver.js).

Also, when this typically happens, I have been able to work around it by manually creating a new folder and moving all of the directory contents, as the lock is not on any of the actual typescript files.

image

image

lp1641 commented 10 months ago

I have the same problem on VSCode 1.83 with my NextJS project. Some folders are moving correctly but others can throw error. As soon as the TS server starts the folders are locked. If you move files and folders before the server starts, it will work. This pisses me off terribly and prevents me from refactoring the project. Because TS server gives the possibility to update imports automatically, without it you have to update them manually. I don't know who invented this. You can turn off all extensions, you can try the insider build, but it's all useless, the errors remain. I'm using latest Windows 11.

image

xeinebiu commented 10 months ago

I have the same problem on VSCode 1.83 with my NextJS project. Some folders are moving correctly but others can throw error. As soon as the TS server starts the folders are locked. If you move files and folders before the server starts, it will work. This pisses me off terribly and prevents me from refactoring the project. Because TS server gives the possibility to update imports automatically, without it you have to update them manually. I don't know who invented this. You can turn off all extensions, you can try the insider build, but it's all useless, the errors remain. I'm using latest Windows 11.

image

I have the exact same experience

hbatalhaStch commented 9 months ago

I have the same problem on VSCode 1.83 with my NextJS project. Some folders are moving correctly but others can throw error. As soon as the TS server starts the folders are locked. If you move files and folders before the server starts, it will work. This pisses me off terribly and prevents me from refactoring the project. Because TS server gives the possibility to update imports automatically, without it you have to update them manually. I don't know who invented this. You can turn off all extensions, you can try the insider build, but it's all useless, the errors remain. I'm using latest Windows 11. image

I have the exact same experience

Same here

rtllxndr commented 9 months ago

try in settings.json:

"typescript.tsserver.watchOptions": {
        "watchFile": "fixedChunkSizePolling"
    },
Avircut commented 9 months ago

Adding these settings for tsServer didn't resolve problem for me. I can't rename files even if I just opened VSCode

edw-lee commented 9 months ago

I also had this problem, but I found that setting typescript.tsserver.useSyntaxServer to always solved the problem. I guess there are too many files in the project directory.

This unlocks the files but unfortunately it doesn't auto-update the imports.

Mng12345 commented 9 months ago

The same issue here.

shubshinde commented 8 months ago

try in settings.json:

"typescript.tsserver.watchOptions": {
        "watchFile": "fixedChunkSizePolling"
    },

Works perfect, now I am able to rename or delete files/folders. But the drawback is that auto imports dont work anymore, But I can do it my self.... Thanks for the solution sir.

Diggsey commented 7 months ago

I have this issue too :(

SuspiciousLookingOwl commented 4 months ago

This has been driving me nuts for months! I often have to close my VSCode to rename a directory in my project. I managed to create a minimum reproducible example on VSCode 1.88.0-insider with all extensions disabled.

  1. Create a project folder with this structure
    .
    └── main/
    ├── sub/
    │   └── index.ts
    └── main.ts
    // content of main.ts
    import { sub } from "./sub"; // IMPORTANT
    // content of sub/index.ts
    export const sub = () => true;
  2. Open the project folder in VSCode
  3. Open the main.ts file (IMPORTANT!, I suspect this triggers the TS file watcher)
  4. Try renaming the main folder to something else. It won't work because of the directory lock.

image

Seems like the import on main.ts has something to do with the locking. If you delete / comment the import line, reopen VSCode / reload window, then repeat the 3rd and 4th steps, the directory renaming will work just fine.

I did try moving the sub file to the same directory as the main file like this:

.
└── main/
    ├── sub.ts
    └── main.ts

and the directory renaming works fine too, so I guess it only happens when you are importing a file from a subdirectory? 🤷🏻‍♂️

@bpasero maybe that could help.

lp1641 commented 4 months ago

Time goes by and the problem is still relevant. The only thing I found to avoid restarting VSCode every time is to go to the TypeScript file and open Command Palette and find "TypeScript: Restart TS Server", this option will not appear if your cursor is not focused on the TypeScript file. And while it is restarting you can rename your file or folder, but if it restarts before you rename it will lock your files or folder again and of course there will be no automatic import update. :D

image

abceleung commented 4 months ago

Just bumped into this issue. Is there a way to rename folder while auto updating imports without using VSCode? Any command line tools for this?

mmorton commented 4 months ago

I've been running into this issue for months. I've kept having to close out of VSCode any time I wanted to do something to a directory that contains sub-directors (when it's just files, it seems to work most of the time). After a lot of searching for solutions over the past couple months, I finally stumbled on this older issue today: https://github.com/microsoft/TypeScript/issues/7762, which ultimately lead me here. Sure enough, restarting the TS Server gets rid of the issue temporarily.

bpasero commented 4 months ago

👋 we are experimenting with using VS Codes core file watcher in the TypeScript extension (https://github.com/microsoft/vscode/issues/208872). There is a new setting typescript.tsserver.experimental.useVsCodeWatcher available starting with todays VS Code insider release. Curious if people could try it out by enabling it and seeing if the EPERM issue gets better. In my testing https://github.com/microsoft/TypeScript/issues/54087#issuecomment-2028554228 seems to be resolved at least.

It is worth noting that this is a change that may come with other bugs and we are happy for feedback and early adopters 🙏 . Please report issues at https://github.com/microsoft/vscode/issues

You can give our preview releases a try from: https://code.visualstudio.com/insiders/

lp1641 commented 4 months ago

👋 we are experimenting with using VS Codes core file watcher in the TypeScript extension (microsoft/vscode#208872). There is a new setting typescript.tsserver.experimental.useVsCodeWatcher available starting with todays VS Code insider release. Curious if people could try it out by enabling it and seeing if the EPERM issue gets better. In my testing [#54087 (comment)]

Latest Windows 11. Latest VSCode Insiders. With TypeScript Nightly or without it. Project based on Nx, TypeScript, ReactJS, NextJS. Same result.

image image

sheetalkamat commented 4 months ago

@SuspiciousLookingOwl i followed exact steps with latest typescript build on vscode insiders (without the experimental setting) as well as vscode with typescript nightly . I am on windows and there seems to be no issue in renaming. Which OS are you on? Please share your tsserver.log file so we can see what all its watching and see if we can figure this out. So far we just have reports of this without actually being able to repro this locally and thats not helping fix the issue.

SuspiciousLookingOwl commented 4 months ago

@sheetalkamat I'm on Windows, but you are right! I tried my steps again, and the renaming works. I swear it wasn't working last time 😅 I'll see if I can find a way to reproduce it consistently.

EDIT: I did an update on my VSCode Insider recently though, so maybe that fixes it like what @bpasero has mentioned? Now I'm not sure whether my minimum reproducible example actually did break the file renaming or if I just misconfigured my VSCode.

bpasero commented 4 months ago

To clarify, typescript.tsserver.experimental.useVsCodeWatcher is not enabled by default, so you need to change settings as well as being on latest.

hbatalhaStch commented 4 months ago

I just tested renaming a directory which has many subdirectories with many files and it failed just like it's been failing. I tested with the typescript.tsserver.experimental.useVsCodeWatcher enabled and not and both way failed while running a nextjs (v12.3.1) project.

My environment:

Version: 1.89.0-insider (user setup) Commit: 50a6f4f200c5a33f47997eb6a8966e50cf219e21 Date: 2024-04-12T05:50:19.038Z Electron: 28.2.8 ElectronBuildId: 27744544 Chromium: 120.0.6099.291 Node.js: 18.18.2 V8: 12.0.267.19-electron.0 OS: Windows_NT x64 10.0.19045

Directories (I tried renaming the Componentss directory):

image

But using PowerToys File Locksmith it says that the directory is being held by node.exe

bpasero commented 4 months ago

Can you do this and share the contents of the File Watcher output channel:

hbatalhaStch commented 4 months ago
Output 2024-04-12 10:07:17.588 [trace] [File Watcher] request stats: [Summary] - Recursive Requests: total: 62, suspended: 55, polling: 6 - Non-Recursive Requests: total: 147, suspended: 0, polling: 0 - Recursive Watchers: total: 7, active: 7, failed: 0, stopped: 0 - Non-Recursive Watchers: total: 147, active: 5, failed: 7, reusing: 135 - I/O Handles Impact: total: 18 [Recursive Requests (62, suspended: 55, polling: 6)]: c:\Users\helder.batalha\.vscode-insiders\extensions\ms-vscode.vscode-typescript-next-5.5.20240411\node_modules (excludes: , includes: , correlationId: 73) c:\Users\helder.batalha\Documents\_sita_projects\node_modules [SUSPENDED ] (excludes: , includes: , correlationId: 70) c:\Users\helder.batalha\Documents\_sita_projects\node_modules\@types [SUSPENDED ] (excludes: , includes: , correlationId: 193) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\node_modules [SUSPENDED ] (excludes: , includes: , correlationId: 69) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\node_modules\@types [SUSPENDED ] (excludes: , includes: , correlationId: 192) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web (excludes: **/.dart_tool, includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web (excludes: , includes: , correlationId: 2) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\@ant-design [SUSPENDED ] (excludes: , includes: , correlationId: 151) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\@next [SUSPENDED ] (excludes: , includes: , correlationId: 126) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\@rc-component [SUSPENDED ] (excludes: , includes: , correlationId: 147) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\antd [SUSPENDED ] (excludes: , includes: , correlationId: 133) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\compute-scroll-into-view [SUSPENDED ] (excludes: , includes: , correlationId: 138) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\cookie [SUSPENDED ] (excludes: , includes: , correlationId: 131) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\cookies-next [SUSPENDED ] (excludes: , includes: , correlationId: 130) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\csstype [SUSPENDED ] (excludes: , includes: , correlationId: 120) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\dayjs [SUSPENDED ] (excludes: , includes: , correlationId: 143) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\hoist-non-react-statics [SUSPENDED ] (excludes: , includes: , correlationId: 186) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\next [SUSPENDED ] (excludes: , includes: , correlationId: 128) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\nextjs-progressbar [SUSPENDED ] (excludes: , includes: , correlationId: 188) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules (excludes: , includes: , correlationId: 68) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types (excludes: , includes: , correlationId: 191) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\nprogress [SUSPENDED ] (excludes: , includes: , correlationId: 189) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\prop-types [SUSPENDED ] (excludes: , includes: , correlationId: 122) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-cascader [SUSPENDED ] (excludes: , includes: , correlationId: 157) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-dialog [SUSPENDED ] (excludes: , includes: , correlationId: 161) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-drawer [SUSPENDED ] (excludes: , includes: , correlationId: 158) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-field-form [SUSPENDED ] (excludes: , includes: , correlationId: 134) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-image [SUSPENDED ] (excludes: , includes: , correlationId: 159) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-input [SUSPENDED ] (excludes: , includes: , correlationId: 162) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-input-number [SUSPENDED ] (excludes: , includes: , correlationId: 164) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-mentions [SUSPENDED ] (excludes: , includes: , correlationId: 165) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-menu [SUSPENDED ] (excludes: , includes: , correlationId: 154) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-motion [SUSPENDED ] (excludes: , includes: , correlationId: 142) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-notification [SUSPENDED ] (excludes: , includes: , correlationId: 167) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-picker [SUSPENDED ] (excludes: , includes: , correlationId: 140) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-rate [SUSPENDED ] (excludes: , includes: , correlationId: 168) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-segmented [SUSPENDED ] (excludes: , includes: , correlationId: 171) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-select [SUSPENDED ] (excludes: , includes: , correlationId: 152) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-slider [SUSPENDED ] (excludes: , includes: , correlationId: 172) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-steps [SUSPENDED ] (excludes: , includes: , correlationId: 173) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-table [SUSPENDED ] (excludes: , includes: , correlationId: 148) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-tabs [SUSPENDED ] (excludes: , includes: , correlationId: 155) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-textarea [SUSPENDED ] (excludes: , includes: , correlationId: 163) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-tooltip [SUSPENDED ] (excludes: , includes: , correlationId: 145) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-tree [SUSPENDED ] (excludes: , includes: , correlationId: 174) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-tree-select [SUSPENDED ] (excludes: , includes: , correlationId: 175) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-trigger [SUSPENDED ] (excludes: , includes: , correlationId: 141) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-upload [SUSPENDED ] (excludes: , includes: , correlationId: 150) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-util [SUSPENDED ] (excludes: , includes: , correlationId: 160) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\rc-virtual-list [SUSPENDED ] (excludes: , includes: , correlationId: 153) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\react [SUSPENDED ] (excludes: , includes: , correlationId: 118) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\react-idle-timer [SUSPENDED ] (excludes: , includes: , correlationId: 187) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\react-infinite-scroll-component [SUSPENDED ] (excludes: , includes: , correlationId: 177) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\react-responsive [SUSPENDED ] (excludes: , includes: , correlationId: 132) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\scheduler [SUSPENDED ] (excludes: , includes: , correlationId: 124) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\screenfull [SUSPENDED ] (excludes: , includes: , correlationId: 179) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\scroll-into-view-if-needed [SUSPENDED ] (excludes: , includes: , correlationId: 136) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src (excludes: , includes: , correlationId: 107) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\styled-components [SUSPENDED ] (excludes: , includes: , correlationId: 185) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\styles (excludes: , includes: , correlationId: 184) c:\Users\helder.batalha\Documents\node_modules [SUSPENDED ] (excludes: , includes: , correlationId: 71) c:\Users\helder.batalha\Documents\node_modules\@types [SUSPENDED ] (excludes: , includes: , correlationId: 194) [Non-Recursive Requests (147, suspended: 0, polling: 0)]: c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\keybindings.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\settings.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\snippets (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\tasks.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web (excludes: , includes: , correlationId: 117) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git (excludes: , includes: ["**/.dart_tool/**"], correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git\refs\remotes\origin\develop2 (excludes: , includes: ["**/.dart_tool/**"], correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\extensions (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\launch.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\settings.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\tasks.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\next-env.d.ts (excludes: , includes: , correlationId: 1) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\cssinjs\package.json (excludes: , includes: , correlationId: 84) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\icons-svg\package.json (excludes: , includes: , correlationId: 169) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\icons\package.json (excludes: , includes: , correlationId: 101) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\react-slick\package.json (excludes: , includes: , correlationId: 156) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@next\env\package.json (excludes: , includes: , correlationId: 125) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@rc-component\mini-decimal\package.json (excludes: , includes: , correlationId: 98) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@rc-component\portal\package.json (excludes: , includes: , correlationId: 91) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@rc-component\tour\package.json (excludes: , includes: , correlationId: 83) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\cookie\package.json (excludes: , includes: , correlationId: 109) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\hoist-non-react-statics\package.json (excludes: , includes: , correlationId: 110) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\json5\package.json (excludes: , includes: , correlationId: 111) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\node\package.json (excludes: , includes: , correlationId: 72) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\nprogress\package.json (excludes: , includes: , correlationId: 112) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\prop-types\package.json (excludes: , includes: , correlationId: 113) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\react-dom\package.json (excludes: , includes: , correlationId: 75) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\react-responsive\package.json (excludes: , includes: , correlationId: 114) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\react\package.json (excludes: , includes: , correlationId: 74) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\scheduler\package.json (excludes: , includes: , correlationId: 115) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\styled-components\package.json (excludes: , includes: , correlationId: 116) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\antd\package.json (excludes: , includes: , correlationId: 78) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\compute-scroll-into-view\package.json (excludes: , includes: , correlationId: 137) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\cookie\package.json (excludes: , includes: , correlationId: 129) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\cookies-next\package.json (excludes: , includes: , correlationId: 76) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\csstype\package.json (excludes: , includes: , correlationId: 119) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\dayjs\package.json (excludes: , includes: , correlationId: 139) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\hoist-non-react-statics\package.json (excludes: , includes: , correlationId: 181) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\next\dist\compiled\@edge-runtime\primitives\url\package.json (excludes: , includes: , correlationId: 127) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\next\package.json (excludes: , includes: , correlationId: 65) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\nextjs-progressbar\package.json (excludes: , includes: , correlationId: 182) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\nprogress\package.json (excludes: , includes: , correlationId: 183) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\prop-types\package.json (excludes: , includes: , correlationId: 121) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-cascader\package.json (excludes: , includes: , correlationId: 89) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-dialog\package.json (excludes: , includes: , correlationId: 94) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-drawer\package.json (excludes: , includes: , correlationId: 90) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-field-form\package.json (excludes: , includes: , correlationId: 79) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-image\package.json (excludes: , includes: , correlationId: 92) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-input-number\package.json (excludes: , includes: , correlationId: 97) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-input\package.json (excludes: , includes: , correlationId: 95) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-mentions\package.json (excludes: , includes: , correlationId: 99) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-menu\package.json (excludes: , includes: , correlationId: 87) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-motion\package.json (excludes: , includes: , correlationId: 81) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-notification\package.json (excludes: , includes: , correlationId: 166) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-pagination\package.json (excludes: , includes: , correlationId: 146) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-picker\package.json (excludes: , includes: , correlationId: 80) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-rate\package.json (excludes: , includes: , correlationId: 100) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-segmented\package.json (excludes: , includes: , correlationId: 170) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-select\package.json (excludes: , includes: , correlationId: 85) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-slider\package.json (excludes: , includes: , correlationId: 102) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-steps\package.json (excludes: , includes: , correlationId: 103) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-table\package.json (excludes: , includes: , correlationId: 104) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tabs\package.json (excludes: , includes: , correlationId: 88) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-textarea\package.json (excludes: , includes: , correlationId: 96) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tooltip\package.json (excludes: , includes: , correlationId: 144) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tree-select\package.json (excludes: , includes: , correlationId: 106) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tree\package.json (excludes: , includes: , correlationId: 105) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-trigger\package.json (excludes: , includes: , correlationId: 82) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-upload\package.json (excludes: , includes: , correlationId: 149) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-util\package.json (excludes: , includes: , correlationId: 93) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-virtual-list\package.json (excludes: , includes: , correlationId: 86) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-dom\package.json (excludes: , includes: , correlationId: 67) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-idle-timer\package.json (excludes: , includes: , correlationId: 108) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-infinite-scroll-component\package.json (excludes: , includes: , correlationId: 176) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-responsive\package.json (excludes: , includes: , correlationId: 77) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react\package.json (excludes: , includes: , correlationId: 66) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\scheduler\package.json (excludes: , includes: , correlationId: 123) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\screenfull\package.json (excludes: , includes: , correlationId: 178) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\scroll-into-view-if-needed\package.json (excludes: , includes: , correlationId: 135) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\styled-components\package.json (excludes: , includes: , correlationId: 180) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\swr\package.json (excludes: , includes: , correlationId: 195) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\package.json (excludes: , includes: , correlationId: 190) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\api\hello.ts (excludes: , includes: , correlationId: 3) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\HeaderBar\HeaderDropdown.tsx (excludes: , includes: , correlationId: 11) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\HeaderBar\Notifications.tsx (excludes: , includes: , correlationId: 12) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\HeaderBar\index.tsx (excludes: , includes: , correlationId: 13) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\MainLayout\index.tsx (excludes: , includes: , correlationId: 14) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\ManagementPage\index.tsx (excludes: , includes: , correlationId: 15) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\SideBar\index.tsx (excludes: , includes: , correlationId: 16) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\ActionButtons.tsx (excludes: , includes: , correlationId: 17) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\ConfirmModal.tsx (excludes: , includes: , correlationId: 18) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomMessage.tsx (excludes: , includes: , correlationId: 19) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomPopConfirm.tsx (excludes: , includes: , correlationId: 20) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomStatus.tsx (excludes: , includes: , correlationId: 21) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomTable.tsx (excludes: , includes: , correlationId: 22) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomerTransfer.tsx (excludes: , includes: , correlationId: 23) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\DynamicButton.tsx (excludes: , includes: , correlationId: 24) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\Logo.tsx (excludes: , includes: , correlationId: 25) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\MenusTag.tsx (excludes: , includes: , correlationId: 26) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\NoServerConnection.tsx (excludes: , includes: , correlationId: 27) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\ProfileTag.tsx (excludes: , includes: , correlationId: 28) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\SessionSuspended.tsx (excludes: , includes: , correlationId: 29) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\StatCard.tsx (excludes: , includes: , correlationId: 30) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\TableActionButton.tsx (excludes: , includes: , correlationId: 31) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\menus\DrawerForm.tsx (excludes: , includes: , correlationId: 32) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\menus\SortModal.tsx (excludes: , includes: , correlationId: 33) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\menus\ViewDrawer.tsx (excludes: , includes: , correlationId: 34) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\permission\FormPermissionDrawer.tsx (excludes: , includes: , correlationId: 35) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\permission\ViewPermissionDrawer.tsx (excludes: , includes: , correlationId: 36) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\roles\DrawerForm.tsx (excludes: , includes: , correlationId: 37) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\roles\MenuTab.tsx (excludes: , includes: , correlationId: 38) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\users\DrawerForm.tsx (excludes: , includes: , correlationId: 39) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\users\Profile.tsx (excludes: , includes: , correlationId: 40) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\CustomError.ts (excludes: , includes: , correlationId: 4) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\auth.tsx (excludes: , includes: , correlationId: 41) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\colors.tsx (excludes: , includes: , correlationId: 42) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\constant.ts (excludes: , includes: , correlationId: 5) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\context\IdleTimer.tsx (excludes: , includes: , correlationId: 44) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\errorsHandler.ts (excludes: , includes: , correlationId: 6) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\fetchJson.ts (excludes: , includes: , correlationId: 7) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\helpers.ts (excludes: , includes: , correlationId: 8) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useAppState.tsx (excludes: , includes: , correlationId: 45) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useMainLayoutState.tsx (excludes: , includes: , correlationId: 46) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useMounted.tsx (excludes: , includes: , correlationId: 47) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useResponsive.ts (excludes: , includes: , correlationId: 10) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\icons.tsx (excludes: , includes: , correlationId: 43) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\types.ts (excludes: , includes: , correlationId: 9) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\mock\menus.tsx (excludes: , includes: , correlationId: 48) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\mock\notifications.tsx (excludes: , includes: , correlationId: 49) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\404.tsx (excludes: , includes: , correlationId: 50) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\500.tsx (excludes: , includes: , correlationId: 51) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\_app.tsx (excludes: , includes: , correlationId: 52) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\auth\login.tsx (excludes: , includes: , correlationId: 54) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\auth\password-recovery.tsx (excludes: , includes: , correlationId: 55) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\auth\password-reset.tsx (excludes: , includes: , correlationId: 56) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\index.tsx (excludes: , includes: , correlationId: 53) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\menus\index.tsx (excludes: , includes: , correlationId: 57) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\payments\index.tsx (excludes: , includes: , correlationId: 58) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\permissions\index.tsx (excludes: , includes: , correlationId: 59) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\roles\[id].tsx (excludes: , includes: , correlationId: 60) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\roles\index.tsx (excludes: , includes: , correlationId: 61) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\users\[id].tsx (excludes: , includes: , correlationId: 62) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\users\index.tsx (excludes: , includes: , correlationId: 63) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\styles\SidebarMenu.tsx (excludes: , includes: , correlationId: 64) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\tsconfig.json (excludes: , includes: , correlationId: 0) [Recursive Watchers (7, active: 7, failed: 0, stopped: 0)]: c:\Users\helder.batalha\.vscode-insiders\extensions\ms-vscode.vscode-typescript-next-5.5.20240411\node_modules (excludes: , includes: , correlationId: 73) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web [SUBSCRIBED:184] (excludes: **/.dart_tool, includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web (excludes: , includes: , correlationId: 2) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules (excludes: , includes: , correlationId: 68) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types (excludes: , includes: , correlationId: 191) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src (excludes: , includes: , correlationId: 107) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\styles (excludes: , includes: , correlationId: 184) [Non-Recursive Watchers (147, active: 5, failed: 7, reusing: 135)]: c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\keybindings.json [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\settings.json (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\snippets (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\AppData\Roaming\Code - Insiders\User\tasks.json [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web (excludes: , includes: , correlationId: 117) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git (excludes: , includes: ["**/.dart_tool/**"], correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git\refs\remotes\origin\develop2 [REUSING] (excludes: , includes: ["**/.dart_tool/**"], correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\extensions [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\launch.json [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\settings.json [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.vscode\tasks.json [FAILED] (excludes: , includes: , correlationId: ) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\next-env.d.ts [REUSING] (excludes: , includes: , correlationId: 1) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\cssinjs\package.json [REUSING] (excludes: , includes: , correlationId: 84) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\icons-svg\package.json [REUSING] (excludes: , includes: , correlationId: 169) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\icons\package.json [REUSING] (excludes: , includes: , correlationId: 101) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@ant-design\react-slick\package.json [REUSING] (excludes: , includes: , correlationId: 156) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@next\env\package.json [REUSING] (excludes: , includes: , correlationId: 125) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@rc-component\mini-decimal\package.json [REUSING] (excludes: , includes: , correlationId: 98) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@rc-component\portal\package.json [REUSING] (excludes: , includes: , correlationId: 91) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@rc-component\tour\package.json [REUSING] (excludes: , includes: , correlationId: 83) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\cookie\package.json [REUSING] (excludes: , includes: , correlationId: 109) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\hoist-non-react-statics\package.json [REUSING] (excludes: , includes: , correlationId: 110) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\json5\package.json [REUSING] (excludes: , includes: , correlationId: 111) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\node\package.json [REUSING] (excludes: , includes: , correlationId: 72) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\nprogress\package.json [REUSING] (excludes: , includes: , correlationId: 112) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\prop-types\package.json [REUSING] (excludes: , includes: , correlationId: 113) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\react-dom\package.json [REUSING] (excludes: , includes: , correlationId: 75) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\react-responsive\package.json [REUSING] (excludes: , includes: , correlationId: 114) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\react\package.json [REUSING] (excludes: , includes: , correlationId: 74) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\scheduler\package.json [REUSING] (excludes: , includes: , correlationId: 115) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\@types\styled-components\package.json [REUSING] (excludes: , includes: , correlationId: 116) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\antd\package.json [REUSING] (excludes: , includes: , correlationId: 78) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\compute-scroll-into-view\package.json [REUSING] (excludes: , includes: , correlationId: 137) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\cookie\package.json [REUSING] (excludes: , includes: , correlationId: 129) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\cookies-next\package.json [REUSING] (excludes: , includes: , correlationId: 76) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\csstype\package.json [REUSING] (excludes: , includes: , correlationId: 119) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\dayjs\package.json [REUSING] (excludes: , includes: , correlationId: 139) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\hoist-non-react-statics\package.json [REUSING] (excludes: , includes: , correlationId: 181) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\next\dist\compiled\@edge-runtime\primitives\url\package.json [REUSING] (excludes: , includes: , correlationId: 127) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\next\package.json [REUSING] (excludes: , includes: , correlationId: 65) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\nextjs-progressbar\package.json [REUSING] (excludes: , includes: , correlationId: 182) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\nprogress\package.json [REUSING] (excludes: , includes: , correlationId: 183) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\prop-types\package.json [REUSING] (excludes: , includes: , correlationId: 121) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-cascader\package.json [REUSING] (excludes: , includes: , correlationId: 89) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-dialog\package.json [REUSING] (excludes: , includes: , correlationId: 94) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-drawer\package.json [REUSING] (excludes: , includes: , correlationId: 90) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-field-form\package.json [REUSING] (excludes: , includes: , correlationId: 79) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-image\package.json [REUSING] (excludes: , includes: , correlationId: 92) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-input-number\package.json [REUSING] (excludes: , includes: , correlationId: 97) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-input\package.json [REUSING] (excludes: , includes: , correlationId: 95) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-mentions\package.json [REUSING] (excludes: , includes: , correlationId: 99) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-menu\package.json [REUSING] (excludes: , includes: , correlationId: 87) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-motion\package.json [REUSING] (excludes: , includes: , correlationId: 81) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-notification\package.json [REUSING] (excludes: , includes: , correlationId: 166) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-pagination\package.json [REUSING] (excludes: , includes: , correlationId: 146) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-picker\package.json [REUSING] (excludes: , includes: , correlationId: 80) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-rate\package.json [REUSING] (excludes: , includes: , correlationId: 100) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-segmented\package.json [REUSING] (excludes: , includes: , correlationId: 170) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-select\package.json [REUSING] (excludes: , includes: , correlationId: 85) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-slider\package.json [REUSING] (excludes: , includes: , correlationId: 102) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-steps\package.json [REUSING] (excludes: , includes: , correlationId: 103) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-table\package.json [REUSING] (excludes: , includes: , correlationId: 104) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tabs\package.json [REUSING] (excludes: , includes: , correlationId: 88) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-textarea\package.json [REUSING] (excludes: , includes: , correlationId: 96) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tooltip\package.json [REUSING] (excludes: , includes: , correlationId: 144) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tree-select\package.json [REUSING] (excludes: , includes: , correlationId: 106) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-tree\package.json [REUSING] (excludes: , includes: , correlationId: 105) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-trigger\package.json [REUSING] (excludes: , includes: , correlationId: 82) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-upload\package.json [REUSING] (excludes: , includes: , correlationId: 149) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-util\package.json [REUSING] (excludes: , includes: , correlationId: 93) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\rc-virtual-list\package.json [REUSING] (excludes: , includes: , correlationId: 86) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-dom\package.json [REUSING] (excludes: , includes: , correlationId: 67) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-idle-timer\package.json [REUSING] (excludes: , includes: , correlationId: 108) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-infinite-scroll-component\package.json [REUSING] (excludes: , includes: , correlationId: 176) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react-responsive\package.json [REUSING] (excludes: , includes: , correlationId: 77) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\react\package.json [REUSING] (excludes: , includes: , correlationId: 66) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\scheduler\package.json [REUSING] (excludes: , includes: , correlationId: 123) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\screenfull\package.json [REUSING] (excludes: , includes: , correlationId: 178) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\scroll-into-view-if-needed\package.json [REUSING] (excludes: , includes: , correlationId: 135) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\styled-components\package.json [REUSING] (excludes: , includes: , correlationId: 180) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\node_modules\swr\package.json [REUSING] (excludes: , includes: , correlationId: 195) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\package.json [REUSING] (excludes: , includes: , correlationId: 190) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\api\hello.ts [REUSING] (excludes: , includes: , correlationId: 3) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\HeaderBar\HeaderDropdown.tsx [REUSING] (excludes: , includes: , correlationId: 11) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\HeaderBar\Notifications.tsx [REUSING] (excludes: , includes: , correlationId: 12) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\HeaderBar\index.tsx [REUSING] (excludes: , includes: , correlationId: 13) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\MainLayout\index.tsx [REUSING] (excludes: , includes: , correlationId: 14) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\ManagementPage\index.tsx [REUSING] (excludes: , includes: , correlationId: 15) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\layout\SideBar\index.tsx [REUSING] (excludes: , includes: , correlationId: 16) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\ActionButtons.tsx [REUSING] (excludes: , includes: , correlationId: 17) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\ConfirmModal.tsx [REUSING] (excludes: , includes: , correlationId: 18) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomMessage.tsx [REUSING] (excludes: , includes: , correlationId: 19) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomPopConfirm.tsx [REUSING] (excludes: , includes: , correlationId: 20) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomStatus.tsx [REUSING] (excludes: , includes: , correlationId: 21) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomTable.tsx [REUSING] (excludes: , includes: , correlationId: 22) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\CustomerTransfer.tsx [REUSING] (excludes: , includes: , correlationId: 23) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\DynamicButton.tsx [REUSING] (excludes: , includes: , correlationId: 24) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\Logo.tsx [REUSING] (excludes: , includes: , correlationId: 25) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\MenusTag.tsx [REUSING] (excludes: , includes: , correlationId: 26) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\NoServerConnection.tsx [REUSING] (excludes: , includes: , correlationId: 27) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\ProfileTag.tsx [REUSING] (excludes: , includes: , correlationId: 28) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\SessionSuspended.tsx [REUSING] (excludes: , includes: , correlationId: 29) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\StatCard.tsx [REUSING] (excludes: , includes: , correlationId: 30) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\common\TableActionButton.tsx [REUSING] (excludes: , includes: , correlationId: 31) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\menus\DrawerForm.tsx [REUSING] (excludes: , includes: , correlationId: 32) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\menus\SortModal.tsx [REUSING] (excludes: , includes: , correlationId: 33) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\menus\ViewDrawer.tsx [REUSING] (excludes: , includes: , correlationId: 34) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\permission\FormPermissionDrawer.tsx [REUSING] (excludes: , includes: , correlationId: 35) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\permission\ViewPermissionDrawer.tsx [REUSING] (excludes: , includes: , correlationId: 36) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\roles\DrawerForm.tsx [REUSING] (excludes: , includes: , correlationId: 37) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\roles\MenuTab.tsx [REUSING] (excludes: , includes: , correlationId: 38) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\users\DrawerForm.tsx [REUSING] (excludes: , includes: , correlationId: 39) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\components\ui\users\Profile.tsx [REUSING] (excludes: , includes: , correlationId: 40) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\CustomError.ts [REUSING] (excludes: , includes: , correlationId: 4) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\auth.tsx [REUSING] (excludes: , includes: , correlationId: 41) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\colors.tsx [REUSING] (excludes: , includes: , correlationId: 42) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\constant.ts [REUSING] (excludes: , includes: , correlationId: 5) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\context\IdleTimer.tsx [REUSING] (excludes: , includes: , correlationId: 44) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\errorsHandler.ts [REUSING] (excludes: , includes: , correlationId: 6) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\fetchJson.ts [REUSING] (excludes: , includes: , correlationId: 7) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\helpers.ts [REUSING] (excludes: , includes: , correlationId: 8) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useAppState.tsx [REUSING] (excludes: , includes: , correlationId: 45) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useMainLayoutState.tsx [REUSING] (excludes: , includes: , correlationId: 46) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useMounted.tsx [REUSING] (excludes: , includes: , correlationId: 47) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\hooks\useResponsive.ts [REUSING] (excludes: , includes: , correlationId: 10) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\icons.tsx [REUSING] (excludes: , includes: , correlationId: 43) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\lib\types.ts [REUSING] (excludes: , includes: , correlationId: 9) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\mock\menus.tsx [REUSING] (excludes: , includes: , correlationId: 48) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\mock\notifications.tsx [REUSING] (excludes: , includes: , correlationId: 49) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\404.tsx [REUSING] (excludes: , includes: , correlationId: 50) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\500.tsx [REUSING] (excludes: , includes: , correlationId: 51) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\_app.tsx [REUSING] (excludes: , includes: , correlationId: 52) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\auth\login.tsx [REUSING] (excludes: , includes: , correlationId: 54) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\auth\password-recovery.tsx [REUSING] (excludes: , includes: , correlationId: 55) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\auth\password-reset.tsx [REUSING] (excludes: , includes: , correlationId: 56) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\index.tsx [REUSING] (excludes: , includes: , correlationId: 53) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\menus\index.tsx [REUSING] (excludes: , includes: , correlationId: 57) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\payments\index.tsx [REUSING] (excludes: , includes: , correlationId: 58) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\permissions\index.tsx [REUSING] (excludes: , includes: , correlationId: 59) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\roles\[id].tsx [REUSING] (excludes: , includes: , correlationId: 60) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\roles\index.tsx [REUSING] (excludes: , includes: , correlationId: 61) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\users\[id].tsx [REUSING] (excludes: , includes: , correlationId: 62) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\pages\users\index.tsx [REUSING] (excludes: , includes: , correlationId: 63) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\styles\SidebarMenu.tsx [REUSING] (excludes: , includes: , correlationId: 64) c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\tsconfig.json [REUSING] (excludes: , includes: , correlationId: 0) 2024-04-12 10:07:21.091 [trace] [File Watcher (parcel)] [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack_ 2024-04-12 10:07:21.173 [trace] [File Watcher (parcel)] >> normalized [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack_ 2024-04-12 10:07:21.205 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\0.pack 2024-04-12 10:07:21.206 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack 2024-04-12 10:07:21.206 [trace] [File Watcher (parcel)] [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack_ 2024-04-12 10:07:21.206 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack 2024-04-12 10:07:21.206 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack.old 2024-04-12 10:07:21.207 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\0.pack 2024-04-12 10:07:21.207 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack 2024-04-12 10:07:21.207 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack 2024-04-12 10:07:21.207 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack.old 2024-04-12 10:07:21.284 [trace] [File Watcher (parcel)] >> normalized [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack_ 2024-04-12 10:07:21.285 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\0.pack 2024-04-12 10:07:21.285 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack 2024-04-12 10:07:21.285 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack 2024-04-12 10:07:21.285 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack.old 2024-04-12 10:07:21.286 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\0.pack (correlationId: 2) 2024-04-12 10:07:21.286 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\1.pack (correlationId: 2) 2024-04-12 10:07:21.286 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack (correlationId: 2) 2024-04-12 10:07:21.286 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\server-development\index.pack.old (correlationId: 2) 2024-04-12 10:07:21.612 [trace] [File Watcher (parcel)] [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ 2024-04-12 10:07:21.612 [trace] [File Watcher (parcel)] [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ 2024-04-12 10:07:21.690 [trace] [File Watcher (parcel)] >> normalized [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ (correlationId: 2) 2024-04-12 10:07:21.690 [trace] [File Watcher (parcel)] >> normalized [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ 2024-04-12 10:07:22.563 [trace] [File Watcher (parcel)] [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack_ 2024-04-12 10:07:22.650 [trace] [File Watcher (parcel)] >> normalized [ADDED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack_ 2024-04-12 10:07:22.694 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\0.pack 2024-04-12 10:07:22.694 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack 2024-04-12 10:07:22.694 [trace] [File Watcher (parcel)] [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ 2024-04-12 10:07:22.694 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack.old 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack_ 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\0.pack 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack 2024-04-12 10:07:22.695 [trace] [File Watcher (parcel)] [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack.old 2024-04-12 10:07:22.781 [trace] [File Watcher (parcel)] >> normalized [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ 2024-04-12 10:07:22.781 [trace] [File Watcher (parcel)] >> normalized [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack_ 2024-04-12 10:07:22.782 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\0.pack 2024-04-12 10:07:22.782 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack 2024-04-12 10:07:22.782 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack 2024-04-12 10:07:22.782 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack.old 2024-04-12 10:07:22.783 [trace] [File Watcher (parcel)] >> normalized [DELETED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack_ (correlationId: 2) 2024-04-12 10:07:22.783 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\0.pack (correlationId: 2) 2024-04-12 10:07:22.783 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\1.pack (correlationId: 2) 2024-04-12 10:07:22.783 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack (correlationId: 2) 2024-04-12 10:07:22.783 [trace] [File Watcher (parcel)] >> normalized [CHANGED] c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.next\cache\webpack\client-development\index.pack.old (correlationId: 2) 2024-04-12 10:07:23.906 [trace] [File Watcher (node.js)] Request to stop watching: c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git\refs\remotes\origin\develop2 (excludes: , includes: ["**/.dart_tool/**"], correlationId: ) 2024-04-12 10:07:23.907 [trace] [File Watcher (node.js)] stopping file watcher (c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git\refs\remotes\origin\develop2 (excludes: , includes: ["**/.dart_tool/**"], correlationId: )) 2024-04-12 10:07:23.909 [trace] [File Watcher (node.js)] Request to start watching: c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git\refs\remotes\origin\develop2 (excludes: , includes: ["**/.dart_tool/**"], correlationId: ) 2024-04-12 10:07:23.911 [trace] [File Watcher (node.js)] reusing an existing recursive watcher for c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\.git\refs\remotes\origin\develop2
bpasero commented 4 months ago

@hbatalhaStch thanks, but the output seems to miss something at the end, can you make its all of it or attach the file?

hbatalhaStch commented 4 months ago

Sorry didn't notice that it was cut off.

output.txt

bpasero commented 4 months ago

Thanks, and whats the full path to Componentss ?

sheetalkamat commented 4 months ago

@hbatalhaStch Can you also please share verbose tsserver log when typescript.tsserver.experimental.useVsCodeWatcher is not set.

You can upload logs by following these steps:

  1. Set "typescript.tsserver.log": "verbose"
  2. Restart vscode or vscode insiders
  3. Reproduce the problem
  4. In vscode or vscode insiders, run the TypeScript: Open TS Server log command
  5. This should open a large file called tsserver.log.
hbatalhaStch commented 4 months ago

Thanks, and whats the full path to Componentss ?

@bpasero path: C:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src\componentss

hbatalhaStch commented 4 months ago

@sheetalkamat tsserver.log

sheetalkamat commented 4 months ago

@hbatalhaStch is it possible to share the repro code as well as steps so i can investigate this further. Thanks

bpasero commented 4 months ago

Thanks, from the logs I somewhat doubt that this is our file watcher holding a lock onto the folder. The closest path that gets watched is c:\Users\helder.batalha\Documents\_sita_projects\open_note_v2\open_note-web\src. And the fact that node.exe is reported as process that locks the folder is also suspicious to me because I think it should be Code.exe.

Can you maybe conduct an experiment and to disable all extensions from the extensions view to see if it then still reproduces?

hbatalhaStch commented 4 months ago

@hbatalhaStch is it possible to share the repro code as well as steps so i can investigate this further. Thanks

@sheetalkamat here is test project I created: test_project.zip

  1. extract it into a empty folder
  2. run npm i
  3. run npm run dev
  4. after the project finishes compiling and ready to be run in the browser try editing the folder src/pages/components
hbatalhaStch commented 4 months ago

And the fact that node.exe is reported as process that locks the folder is also suspicious to me because I think it should be Code.exe.

yes, when I first ran into this issue both code.ex and node.exe used to lock the folder, now it is just node.exe. Also in the test project I uploaded above, if you move src/pages/components to src/components so none of its files are imported or used by next, the renaming works with no issues. So I am guessing this problem is caused by node rather than vscode and I don't know if it can be fixed by vscode (just a guess, not sure)

bpasero commented 4 months ago

And when you move using a tool outside of VS Code?

hbatalhaStch commented 4 months ago

And when you move using a tool outside of VS Code?

No I drag and drop inside vscode but I have to stop the running nextjs project first, otherwise it will just hang until it fails just like when renaming.

Does this comment maybe relate to this issue?

bpasero commented 4 months ago

@hbatalhaStch does it reproduce when no nextjs process is running? It is certainly possible that they setup another file watcher to support hot-reload support, which is outside of our control.

hbatalhaStch commented 4 months ago

when no nextjs (or any other node based) proecess is running renaming/moving folder works without a problem. The problem arises only when project is running and I am trying to rename a folder which has multiple subfolders with file in them.