17 lines
472 B
JavaScript
17 lines
472 B
JavaScript
const { getDefaultConfig } = require('expo/metro-config');
|
|
const path = require('path');
|
|
|
|
const projectRoot = __dirname;
|
|
const workspaceRoot = path.resolve(projectRoot, '../');
|
|
|
|
const config = getDefaultConfig(projectRoot);
|
|
|
|
config.watchFolders = [workspaceRoot];
|
|
config.resolver.nodeModulesPaths = [
|
|
path.resolve(projectRoot, 'node_modules'),
|
|
path.resolve(workspaceRoot, 'node_modules'),
|
|
];
|
|
|
|
config.resolver.disableHierarchicalLookup = true;
|
|
|
|
module.exports = config; |