I would like to use the client to connect to the server through TLS/SSL.
For example:
const environment = createEnvironment({
host,
port,
username: "",
password: "",
ssl: {
ca: "<my-ca>"
cert: "<my-cert-file>",
key: "<my-key">,
rejectUnauthorized: true
}
})