Modify the julia launcher in vscode

With julia v1.10.4 and suitesparse v5.0.0 (on Ubuntu Linux LTS 22.04), everytime julia runs, it shows the following error:

exception =
│ could not load symbol “SuiteSparse_config_malloc_func_set”:
│ /usr/lib/x86_64-linux-gnu/libsuitesparseconfig.so.5: undefined symbol: SuiteSparse_config_malloc_func_set

I solved this issue by setting the alias julia=‘LD_LIBRARY_PATH=“” julia’ in the .bashrc file. However, I am unsure how to set this configuration in VS Code. It is clear that I need to modify the Julia launcher in VS Code, but I have not been able to solve the problem yet.

I would greatly appreciate any help in resolving this issue.