-
-
Notifications
You must be signed in to change notification settings - Fork 880
/
metro.config.js
37 lines (29 loc) · 1.26 KB
/
metro.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const path = require('path');
const exclusionList = require('metro-config/src/defaults/exclusionList');
const blockList = exclusionList([
/node_modules\/.*\/node_modules\/react-native\/.*/,
// This stops "react-native run-windows" from causing the metro server to
// crash if its already running
new RegExp(`${path.join(__dirname, 'windows').replace(/[/\\]+/g, '/')}.*`),
// Workaround for `EPERM: operation not permitted, lstat '~\midl-MIDLRT-cl.read.1.tlog'`
/.*\.tlog/,
// Prevent Metro from watching temporary files generated by Visual Studio
// otherwise it may crash when they are removed when closing a project.
/.*\/.vs\/.*/,
// Workaround for `EBUSY: resource busy or locked, open '~\msbuild.ProjectImports.zip'`
/.*\.ProjectImports\.zip/,
]);
const config = {
projectRoot: path.join(__dirname, 'example'),
watchFolders: [__dirname],
resolver: {
blockList,
// for some reason, since 0.73, metro does not see this
extraNodeModules: {
'@react-native-google-signin/google-signin': __dirname,
},
},
};
// Starting with react-native 0.72, we are required to provide a full config.
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
module.exports = mergeConfig(getDefaultConfig(__dirname), config);