In my Angular v5 project, I have a situation where I need to adjust the import path based on the environment. For example, I have an OwnedSetContractABI file located in different folders for each environment - dev and production. In dev environment, the path is '../constant/dev/OwnedSetContractABI', and in production environment, the path is '../constant/production/OwnedSetContractABI'. However, ES6 does not allow variables in import syntax. How can I work around this limitation?