taiwannumberone
Does DENO_CERT append a certificate to the list of certs, or does it replace the list?
Does DENO_CERT append a certificate to the list of certs, or does it replace the list? I understand that DENO_TLS_CA_STORE specifies which cert store to use, but I'm not sure how DENO_CERT interacts with that.
1 replies
The requested module 'test/jsx-runtime' does not provide an export named 'jsxs'
hej, I have a exported function
jsx()
stored in jsx-runtime.ts
. I also added these deno.json
settings, so typescript would transpile jsx using my custom function without the need of importing it.
I used imports property so it would point to my file. The error I'm getting looks like this:
error: Uncaught SyntaxError: The requested module 'test/jsx-runtime' does not provide an export named 'jsxs'
And my question is: What exactly is jsxs
or where I can find documentation on that? Typescript docs only mention either jsx() or jsxDEV() depending on your config4 replies