-
Notifications
You must be signed in to change notification settings - Fork 535
/
Copy pathwebpack.config.cjs
44 lines (42 loc) · 971 Bytes
/
webpack.config.cjs
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
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
const fluidRoute = require("@fluid-example/webpack-fluid-loader");
const path = require("path");
module.exports = (env) => ({
...fluidRoute.devServerConfig(__dirname, env),
entry: {
main: "./src/index.ts",
},
resolve: {
extensionAlias: {
".js": [".ts", ".tsx", ".js"],
".cjs": [".cts", ".cjs"],
".mjs": [".mts", ".mjs"],
},
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
},
{
test: /\.[cm]?js$/,
use: [require.resolve("source-map-loader")],
enforce: "pre",
},
],
},
output: {
filename: "[name].bundle.js",
path: path.resolve(__dirname, "dist"),
library: { name: "[name]", type: "umd" },
},
watchOptions: {
ignored: "**/node_modules/**",
},
mode: env?.production ? "production" : "development",
devtool: env?.production ? "source-map" : "inline-source-map",
});