mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
24 lines
760 B
JavaScript
24 lines
760 B
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
const path = require('path');
|
|
const blacklist = require('metro-config/src/defaults/blacklist');
|
|
|
|
module.exports = {
|
|
watchFolders: [
|
|
// The monorepo
|
|
path.resolve(__dirname, '../..'),
|
|
],
|
|
resolver: {
|
|
blacklistRE: blacklist([
|
|
// exclude react-native modules outside of this package
|
|
/app\/.*\/node_modules\/react-native\/.*/,
|
|
/node_modules\/.*\/node_modules\/react-native\/.*/,
|
|
// duplicate packages in server mocks. We don't need them so it's safe to exclude.
|
|
/__mocks__\/.*/,
|
|
]),
|
|
extraNodeModules: {
|
|
// resolve react-native to this package's node_modules
|
|
'react-native': path.resolve(__dirname, 'node_modules/react-native'),
|
|
},
|
|
},
|
|
};
|