Here is my code
// properties.ts
export const properties = {
title: "Google"
};
// example.ts
import { properties } from './properties.ts';
console.log(properties.title); // Prints Google
console.log(eval("properties.title")); // Expected to print Google but throws ReferenceError: properties is not defined
However, console.log(eval('properties_1.properties.title')) // Prints Google
But how to derive "properties_1" is my concern.