This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Absolute path to your package | |
const packagePath = | |
'/Users/mac/my-own-packages/my-awesome-package'; | |
module.exports = { | |
resolver: { | |
nodeModulesPaths: [packagePath], | |
// rest of metro resolver options... | |
}, | |
watchFolders: [packagePath], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Absolute path to your package | |
const packagePath = | |
'/Users/mac/my-own-packages/my-awesome-package'; | |
module.exports = { | |
resolver: { | |
nodeModulesPaths: [packagePath], | |
// rest of metro resolver options... | |
}, | |
// rest of metro options... |
NewerOlder