I have a typescript file like below,
Environment.ts
var Environment = "DEV"
exports.Environment = Environment;
And I am using it in my app.config file like below,
var execEnv = require('./src/execEnvironment.ts');
which gives me the error
cannot find name 'exports'.
What am I doing wrong?