I want to store variables in a static global file, like this:
declare const MYVAR = 'Some unchanging data';
Later on, I would like to be able to retrieve the information using just the key 'MYVAR', for example:
globalFile.findValueByKey('MYVAR');
Since TypeScript doesn't rely heavily on reflection, what is the most effective approach to manage this?