-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathcraco.config.js
103 lines (98 loc) · 3.69 KB
/
craco.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
const path = require('path')
const fs = require('fs')
const cracoBabelLoader = require('craco-babel-loader')
const webpack = require('webpack');
// Handle relative paths to sibling packages
const appDirectory = fs.realpathSync(process.cwd())
const resolvePackage = relativePath => path.resolve(appDirectory, relativePath)
const packagesToTranspile = [
require.resolve('react-native-gesture-handler'),
require.resolve('react-native-svg'),
require.resolve('react-native-reanimated'),
require.resolve('react-native-safe-area-context'),
path.resolve('node_modules/@react-native/assets-registry/registry.js'),
]
console.log(`Transpiling packages: ${packagesToTranspile.join('\n')}`)
module.exports = {
// ...
watchOptions: {
followSymlinks: false,
// ignored: /node_modules/,
},
typescript: {
enableTypeChecking: false /* (default value) */,
},
webpack: {
configure: (webpackConfig) => {
const scopePluginIndex = webpackConfig.resolve.plugins.findIndex(
({ constructor }) => constructor && constructor.name === 'ModuleScopePlugin'
);
webpackConfig.plugins.push(
new webpack.ProvidePlugin({
process: 'process/browser',
})
);
// Inject __DEV__ which is required by some modules
webpackConfig.plugins.push(
new webpack.DefinePlugin({
__DEV__: process.env.NODE_ENV !== 'production',
})
);
webpackConfig.resolve.plugins.splice(scopePluginIndex, 1);
webpackConfig.resolve = {
...webpackConfig.resolve,
alias: {
...webpackConfig.resolve.alias,
process: "process/browser",
'react': require.resolve('react'),
// 'react-dom': require.resolve('react-dom'),
'react-native$': require.resolve('react-native-web'),
'react-native-reanimated': path.resolve(__dirname, './node_modules/react-native-reanimated'),
'react-native-gesture-handler': path.resolve(__dirname, './node_modules/react-native-gesture-handler'),
'react-native-safe-area-context': path.resolve(__dirname, './node_modules/react-native-safe-area-context'),
'react-native-svg': path.resolve(__dirname, './node_modules/react-native-svg'),
},
fallback: {
"crypto": require.resolve("crypto-browserify"),
"stream": require.resolve("stream-browserify"),
"vm": require.resolve("vm-browserify"),
},
};
webpackConfig.module.rules.push(
{
test: /\.(jpg|png|woff|woff2|eot|ttf|svg)$/,
type: 'asset/resource'
});
// // Add SVGR loader for SVG files
// webpackConfig.module.rules.push({
// test: /\.svg$/,
// use: ['@svgr/webpack'], // This will use SVGR for SVG files and url-loader as a fallback
// });
// write resolve config for debug
// const webpackConfigPath = path.resolve(__dirname, './webpack.config.json');
// fs.writeFileSync(webpackConfigPath, JSON.stringify(webpackConfig, null, 2));
// console.log(`Wrote webpack config to ${webpackConfigPath}`);
return webpackConfig;
},
},
babel: {
"presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-flow", "@babel/preset-typescript"],
"plugins": [
['@babel/plugin-syntax-jsx'],
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-proposal-object-rest-spread"],
["@babel/plugin-transform-class-properties"],
["@babel/plugin-transform-private-methods"],
["@babel/plugin-transform-private-property-in-object"]
]
},
plugins: [
{
plugin: cracoBabelLoader,
options: {
includes: packagesToTranspile,
excludes: [/node_modules/],
}
},
]
};