-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.common.js
45 lines (42 loc) · 1.21 KB
/
webpack.common.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
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
var HtmlWebpackPlugin = require("html-webpack-plugin");
const isProduction = process.env.ENV === "production";
module.exports = {
entry: "./app/index.tsx",
output: {
path: __dirname + "/dist",
publicPath: "/",
filename: "bundle.js",
libraryTarget: "umd"
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ["babel-loader"]
},
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" },
{
test: /\.wasm$/,
type: "webassembly/experimental"
}
]
},
resolve: {
extensions: ["*", ".js", ".jsx", ".ts", ".tsx", ".wasm"]
},
plugins: [
new CleanWebpackPlugin({ protectWebpackAssets: true }),
new HtmlWebpackPlugin({
template: "./app/index.html",
inject: true,
minify: isProduction,
favicon: "favicon.ico",
production: isProduction
})
]
};