forked from Duell10111/ReactTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetro.config.js
39 lines (32 loc) · 1.15 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
38
39
// Learn more https://docs.expo.io/guides/customizing-metro
const {getDefaultConfig} = require("expo/metro-config");
const appJSONConfig = require("./app.json");
// eslint-disable-next-line no-undef
const config = getDefaultConfig(__dirname);
// When enabled, the optional code below will allow Metro to resolve
// and bundle source files with TV-specific extensions
// (e.g., *.ios.tv.tsx, *.android.tv.tsx, *.tv.tsx)
//
// Metro will still resolve source files with standard extensions
// as usual if TV-specific files are not found for a module.
//
/*
if (process.env?.EXPO_TV === '1') {
const originalSourceExts = config.resolver.sourceExts;
const tvSourceExts = [
...originalSourceExts.map((e) => `tv.${e}`),
...originalSourceExts,
];
config.resolver.sourceExts = tvSourceExts;
}
*/
if (appJSONConfig.expo.plugins[0][1].isTV) {
console.log("---- Adding TV file extensions ----");
config.resolver.sourceExts.unshift(
...config.resolver.sourceExts.map(e => `tv.${e}`),
);
}
config.resolver.sourceExts.push("sql");
config.resolver.unstable_enablePackageExports = true;
// console.log(config.resolver.sourceExts);
module.exports = config;