Can use the --cert flag in the command line, but not in deno.json
I am trying to run my deno program with the following command:
This works fine. However, if I put this command in my
My
So why can Deno find the cert no problem if I run the command from the CLI, but not via deno.json?
deno run -A --cert ~/tmp/ca.crt main.tsThis works fine. However, if I put this command in my
deno.json, it can no longer find the certificate:My
deno.json relevant line:So why can Deno find the cert no problem if I run the command from the CLI, but not via deno.json?
