-
Notifications
You must be signed in to change notification settings - Fork 0
/
metro.config.js
37 lines (33 loc) · 967 Bytes
/
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 {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
/**
* Metro configuration
* https://facebook.github.io/metro/docs/configuration
*
* @type {import('metro-config').MetroConfig}
*/
//const { getDefaultConfig } = require('metro-config');
const config = (async () => {
const {
resolver: { sourceExts, assetExts }
} = await getDefaultConfig();
return {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
resolver: {
assetExts: assetExts.filter(ext => ext !== 'ts' && ext !== 'tsx'),
sourceExts: [...sourceExts, 'ts', 'tsx'],
extraNodeModules: new Proxy({}, {
get: (target, name) => {
return path.join(process.cwd(), `node_modules/${name}`);
},
}),
},
};
})();
module.exports = mergeConfig(getDefaultConfig(__dirname), config);