-
Notifications
You must be signed in to change notification settings - Fork 166
/
webpack.common.js
37 lines (35 loc) · 1013 Bytes
/
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
const path = require("path");
let env = process.env.NODE_ENV || "development";
module.exports = function (rootDir) {
return {
mode: env,
devtool: env === "development" ? "inline-source-map" : "source-map",
entry: path.resolve(rootDir, "src", "index.ts"),
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: [".ts", ".tsx", ".js"],
fallback: {
crypto: false,
bufferutil: false,
"utf-8-validate": false,
},
},
module: {
rules: [
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
projectReferences: true,
compilerOptions: {
sourceMap: env === "development",
module: "commonjs",
},
},
},
],
},
// plugins: [new CleanWebpackPlugin({verbose: true})]
};
};