forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.cjs
55 lines (53 loc) · 1.1 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
/*!
* 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");
const { merge } = require("webpack-merge");
module.exports = (env) =>
merge(
{
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/**",
},
},
env?.production
? {
mode: "production",
devtool: "source-map",
}
: {
mode: "development",
devtool: "inline-source-map",
},
fluidRoute.devServerConfig(__dirname, env),
);