I want to do some intense job on firebase functions and it usually takes more than 60 seconds. On production, I can set timeout longer from web console but I cannot find setting for local environment.
Following is the command which I'm using to start serving.
firebase serve --only functions
I'm using HTTPS trigger and following is the command to trigger my function on local.
functions-emulator call myfunc --data='{"uid":"user_id_1"}'
Is there way to configure timeout on local?