This repository was archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
86 lines (83 loc) · 2.21 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
"use strict";
const path = require("path");
const webpack = require("webpack");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const TsConfigPathsPlugin = require("awesome-typescript-loader").TsConfigPathsPlugin;
const uglifyPlugin = new webpack.optimize.UglifyJsPlugin({
output: { comments: false },
mangle: true,
sourceMap: true,
});
const reactPresets = process.env.NODE_ENV === "production" ? ["react", "react-optimize"] : ["react"];
const additionalPlugins = process.env.NODE_ENV === "production" ? [uglifyPlugin] : [];
module.exports = {
entry: ["babel-polyfill", "./src/app.tsx"],
devtool: "sourcemap",
resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx", ".txt"],
modules: ["../node_modules"],
plugins: [new TsConfigPathsPlugin()],
},
module: {
rules: [
{
test: /\.css.ts$/,
use: [
"style-loader",
"css-loader?modules&importLoaders=1",
"postcss-loader",
"css-in-js-loader",
],
},
{
test: /\.txt?$/,
loader: "raw-loader",
exclude: path.resolve(__dirname, "../node_modules"),
},
{
test: /(\.jsx?|\.tsx?)$/,
loader: "awesome-typescript-loader",
exclude: path.resolve(__dirname, "../node_modules"),
query: {
useBabel: true,
babelCore: path.resolve(__dirname, "../node_modules/babel-core"),
babelOptions: {
presets: reactPresets,
},
},
},
{
test: /\.(woff|woff2)/,
loader: "url-loader",
query: {
limit: 8912,
},
},
{
test: /(\.js|\.jsx)$/,
loader: "babel-loader",
include: path.resolve(__dirname, "../node_modules/react-icons"),
query: {
presets: ["es2015", ...reactPresets],
},
},
],
},
output: {
path: path.resolve(__dirname, "build"),
publicPath: "",
filename: "app.js",
},
plugins: [
new CopyWebpackPlugin([
{ from: "src/index.html" },
{ from: "media/preview.jpg" },
]),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
},
}),
...additionalPlugins,
],
};