Auto-generated JitCustomTypes.json since UiPath Studio 2024.10

We just upgraded to UiPath Studio 2024.10 and getting this file JitCustomTypes.json in all projects when we edit them. Is this file needed or should I put it to the .gitignore file? A Google Search do not find any match to that file which is very strange as UiPath Studio 2024.10 is kind of old already.

File content:
image

Hi @kwoxer

The JitCustomTypes.json file is used by UiPath Studio 2024.10 to manage custom types locally. It is not necessary for version control and should be added to your .gitignore to prevent it from being tracked.

Add this to .gitignore: - JitCustomTypes.json

If you found helpful , mark as a solution thanks

1 Like

Thanks, doing so are there more files that are recommended to be added to the .gitignore file? So that we can update our Framework in advance. And not that we mention next week another autogen file coming up :slight_smile:

Yes, there are several types of files you might consider adding to your .gitignore to keep your repository organized and focused on essential project files.
Thanks

Ok and which ones, is there a list?

@kwoxer
consider adding the following types of files to your .gitignore : auto-generated files like JitCustomTypes.json , temporary files with extensions such as .tmp or .log , user-specific settings like .user or .suo , build artifacts, IDE-specific files such as .vscode or .idea , local configuration files like .local and .settings , and cache files.

Mark as a solution if you found it helpful.
Happy Automation!