标签: node.js
假设我有一个像这样的项目结构:
project -src index.js -functions bar.js
我的index.js看起来像这样
index.js
import bar from '../functions/bar` bar()
是否可以为functions目录创建别名,以便我的导入是这样的:
functions
import bar from `mocks/bar`