forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.cjs
49 lines (46 loc) · 1.07 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
/*!
* 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/loader.ts"),
},
mode,
devtool: "inline-source-map",
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",
},
],
},
// Some of Fluid's dependencies depend on process.env.NODE_ENV being defined.
// This can be removed when we no longer get runtime errors like 'process is not defined'
plugins: [
new webpack.DefinePlugin({
process: { env: { NODE_ENV: JSON.stringify(mode) } },
}),
],
output: {
filename: "[name].bundle.js",
path: path.resolve(__dirname, "dist"),
library: { name: "FluidLoader", type: "umd" },
},
};