【发布时间】:2019-09-09 15:25:49
【问题描述】:
我正在尝试添加 src 目录,这样我就有了类似的东西
- package.json
- android
- ios
- src
- foo
- hello.js
- index.js
- App.js
- node_modules
然后我添加了
watchFolders: [path.join(__dirname, 'src')],
致metro.config.js
希望能够在任何地方做import hello from 'foo/hello'(例如来自App.js)
我还发现如果在node_modules下添加文件夹就可以实现absolute import
- package.json
- android
- ios
- node_modules
- foo
- hello.js
- index.js
- App.js
【问题讨论】:
标签: react-native metro-bundler