Getting a compile-time error on (process.env.PORT - 100) in the below conditional statement.
const port = process.env.PORT ? (process.env.PORT - 100) : 3000;
Error says:
The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.