Also, I'm using typescript with express and I'm tr...
# support-questions-legacy
a
Also, I'm using typescript with express and I'm trying to load
connectionURI
from
process.env.SUPERTOKENS_URI
, it looks like the type for it is
string | undefined
, and type for
connectionURI
is string, so I'm unable to assign this, is there a workaround for this other than adding
// @ts-ignore
above it?