-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
webpack.config.js
92 lines (85 loc) Β· 2.07 KB
/
webpack.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
const path = require('path')
const webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const appDirectory = path.resolve(__dirname)
const rootDirectory = path.resolve(__dirname, '..', '..')
const compileNodeModules = [
'react-native-swipe-gestures',
'react-native-modal-selector'
].map(moduleName => path.resolve(rootDirectory, `node_modules/${moduleName}`))
const babelLoaderConfiguration = {
test: /\.js$|tsx?$/,
include: [
path.resolve(__dirname, 'index.web.js'),
path.resolve(__dirname, 'App.web.tsx'),
path.resolve(__dirname, 'components'),
path.resolve(__dirname, './.storybook/preview.js'),
path.resolve(__dirname, './.storybook/Storybook.tsx'),
...compileNodeModules
],
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
presets: [
'@babel/env',
'@babel/preset-react',
'module:metro-react-native-babel-preset'
],
plugins: ['react-native-web', '@babel/plugin-proposal-class-properties']
}
}
}
const svgLoaderConfiguration = {
test: /\.svg$/,
use: [
{
loader: '@svgr/webpack'
}
]
}
const imageLoaderConfiguration = {
test: /\.(gif|jpe?g|png)$/,
use: {
loader: 'url-loader',
options: {
name: '[name].[ext]'
}
}
}
module.exports = {
entry: {
app: path.join(__dirname, 'index.web.js')
},
output: {
path: path.resolve(appDirectory, 'dist'),
publicPath: '/',
filename: 'rnw.bundle.js'
},
resolve: {
extensions: ['.web.tsx', '.web.ts', '.tsx', '.ts', '.web.js', '.js'],
alias: {
'react-native$': 'react-native-web'
}
},
module: {
rules: [
babelLoaderConfiguration,
imageLoaderConfiguration,
svgLoaderConfiguration
]
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'index.html')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
// See: https://github.com/necolas/react-native-web/issues/349
__DEV__: JSON.stringify(true)
})
],
devServer: {
open: true
}
}