If we have some environment variables which are present in the environment in which the compiled JavaScript is going to run, how we can mention those variables in Typescript code ?
In TypeScript varaibles cannot be used without being declared. If it is declared like let env_varaible;, it become var env_variable; which eventually overridethe actual varaible. What is the solution for this?
env.variable?