是否可以在导入语法中使用变量文件名。
例如:
import * as myModule from "my-module";
是这样的:
var module="my-module";
import * as myModule from module;
或者还有其他办法吗?如果没有,你可以从哪里加载模块指定基(根)目录? 感谢
答案 0 :(得分:0)
对于baseroot,我只是使用符号链接的简单解决方法:
将src /链接到node_module / src
并使用它:
import A from 'src/some/where/A
还有其他可能的方法,但我很好,有了它,它非常简单,它的工作原理;)
查看此How to make the require in node.js to be always relative to the root folder of the project?