mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
# Summary Due to the large number of example apps in the repository, I decided to change the structure and move all applications into an "apps" folder to maintain a clear structure.
66 lines
2.3 KiB
JavaScript
66 lines
2.3 KiB
JavaScript
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
|
|
|
|
/**
|
|
* Metro configuration
|
|
* https://facebook.github.io/metro/docs/configuration
|
|
*
|
|
* @type {import('metro-config').MetroConfig}
|
|
*/
|
|
const path = require('path');
|
|
const exclusionList = require('metro-config/src/defaults/exclusionList');
|
|
const escape = require('escape-string-regexp');
|
|
const pack = require('../package.json');
|
|
|
|
const root = path.resolve(__dirname, '..');
|
|
const projectNodeModules = path.join(__dirname, 'node_modules');
|
|
|
|
const fs = require('fs');
|
|
const rnwPath = fs.realpathSync(
|
|
path.resolve(require.resolve('react-native-windows/package.json'), '..')
|
|
);
|
|
|
|
const modules = [...Object.keys(pack.peerDependencies), 'react-native-windows'];
|
|
|
|
const config = {
|
|
projectRoot: __dirname,
|
|
watchFolders: [root],
|
|
|
|
// We need to make sure that only one version is loaded for peerDependencies
|
|
// So we exclude them at the root, and alias them to the versions in example's node_modules
|
|
resolver: {
|
|
blockList: exclusionList(
|
|
modules.map(
|
|
(m) =>
|
|
new RegExp(`^${escape(path.join(root, 'node_modules', m))}\\/.*$`)
|
|
),
|
|
// 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, '/')}.*`
|
|
),
|
|
new RegExp(`${path.join(__dirname, 'macos').replace(/[/\\]+/g, '/')}.*`),
|
|
// This prevents "react-native run-windows" from hitting: EBUSY: resource busy or locked, open msbuild.ProjectImports.zip or other files produced by msbuild
|
|
new RegExp(`${rnwPath}/build/.*`),
|
|
new RegExp(`${rnwPath}/target/.*`),
|
|
/.*\.ProjectImports\.zip/
|
|
),
|
|
nodeModulesPaths: [projectNodeModules, path.join(__dirname, '../../')],
|
|
extraNodeModules: modules.reduce((acc, name) => {
|
|
acc[name] = path.join(__dirname, 'node_modules', name);
|
|
return acc;
|
|
}, {}),
|
|
},
|
|
|
|
transformer: {
|
|
getTransformOptions: async () => ({
|
|
transform: {
|
|
experimentalImportSupport: false,
|
|
},
|
|
}),
|
|
// This fixes the 'missing-asset-registry-path` error (see https://github.com/microsoft/react-native-windows/issues/11437)
|
|
assetRegistryPath: 'react-native/Libraries/Image/AssetRegistry',
|
|
},
|
|
};
|
|
|
|
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
|