mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 11:38:40 +00:00
66 lines
1.9 KiB
JavaScript
66 lines
1.9 KiB
JavaScript
const path = require('path')
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin')
|
|
|
|
module.exports = {
|
|
entry: './src/index.tsx',
|
|
output: {
|
|
filename: 'index.[fullhash].js',
|
|
path: path.join(__dirname, 'dist'),
|
|
},
|
|
devtool: 'source-map',
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.js', '.json'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.[jt]sx?$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
cacheDirectory: true,
|
|
babelrc: false,
|
|
presets: [
|
|
'@babel/preset-typescript',
|
|
[
|
|
'@babel/preset-env',
|
|
{ targets: { browsers: '> 5%, not IE <= 11' } },
|
|
],
|
|
'@babel/preset-react',
|
|
],
|
|
plugins: [
|
|
'babel-plugin-styled-components',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
enforce: 'pre',
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
loader: 'source-map-loader'
|
|
},
|
|
{
|
|
test: /\.(png|svg|jpg|gif|woff|woff2|eot|ttf|otf|ico)$/,
|
|
use: ['file-loader'],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new ForkTsCheckerWebpackPlugin(),
|
|
new HtmlWebpackPlugin({
|
|
template: 'src/index.html',
|
|
}),
|
|
],
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
host: '0.0.0.0',
|
|
stats: 'errors-only',
|
|
overlay: true,
|
|
hot: true,
|
|
},
|
|
stats: 'minimal',
|
|
}
|