forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.cjs
63 lines (60 loc) · 1.64 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
56
57
58
59
60
61
62
63
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
const path = require("path");
const webpack = require("webpack");
const mode = "development";
module.exports = {
entry: {
"fluid-loader": path.resolve(__dirname, "./src/fetchApp.ts"),
},
mode,
devtool: "inline-source-map",
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.m?js$/,
use: [require.resolve("source-map-loader")],
enforce: "pre",
},
],
},
// Webpack 5 does not support automatic polyfilling of node modules, setting node to false will help simulate webpack 5 behavior by throwing build errors when we rely on node polyfills
node: false,
resolve: {
extensionAlias: {
".js": [".ts", ".tsx", ".js", ".cjs", ".mjs"],
},
extensions: [".tsx", ".ts", ".js"],
},
// Some of Fluid's dependencies depend on things like global and process.env.NODE_ENV being defined. This won't be set in Webpack 5 by default, so we are setting it with the define plugin.
// This can be removed when we no longer get runtime errors like 'process is not defined' and 'global' is not defined
plugins: [
new webpack.DefinePlugin({
process: { env: { NODE_ENV: JSON.stringify(mode) } },
global: {},
}),
],
devServer: {
static: {
directory: path.join(__dirname, "/webpack/fluid-loader.bundle.js"),
publicPath: "/fluid-loader.bundle.js",
},
devMiddleware: {
publicPath: "/webpack",
},
port: 8080,
},
output: {
filename: "[name].bundle.js",
path: path.resolve(__dirname, "webpack"),
library: "FluidLoader",
publicPath: "/",
},
};