Is it possible to have a variable file name in the import syntax.
for example:
import * as myModule from "my-module";
to be something like this:
var module="my-module";
import * as myModule from module;
Or there is other approach for this? If not can you specify a base(root) dir from where to load the modules? Thanks