I think this isn't possible, but I may be wrong.
Example see here:
functions = {x^2 + y^2 - 4, E^x + y - 1};
ResourceFunction["JacobianMatrix", ResourceSystemBase ->
"https://www.wolframcloud.com/obj/resourcesystem/api/1.0"][functions, {x,y}]//MatrixForm
or:
vars = {x, y};
functions = {x^2 + y^2 - 4, E^x + y - 1};
jacobianUsingOuter = Outer[D, functions, vars];
MatrixForm[jacobianUsingOuter]
Regards M.I.