-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
90 lines (89 loc) · 2.65 KB
/
webpack.config.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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* eslint-disable @typescript-eslint/no-var-requires */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require("path");
const webpack = require("webpack");
// Instead of using `activeui-sdk-scripts build`, this package is built with a Webpack config that mocks browser APIs and UI related modules.
// This allows the functions exported by this package to be run smoothly in a Node.js environment (see https://support.activeviam.com/jira/browse/UI-6165).
module.exports = {
entry: {
bin: "./src/bin.ts",
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.m?js/,
resolve: {
fullySpecified: false,
},
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.ttf$/i,
use: ["file-loader"],
},
{
test: /\.woff.?$/i,
use: ["file-loader"],
},
],
},
output: {
hashFunction: "xxhash64",
globalObject: "window",
filename: () => {
return "[name].js";
},
path: path.resolve(__dirname, "dist"),
},
optimization: {
splitChunks: {
chunks: "all",
},
},
target: "node",
resolve: {
extensions: [".js", ".ts"],
modules: ["node_modules"],
alias: {
"mocked-window": path.resolve(__dirname, "mockedWindow"),
"mocked-navigator": path.resolve(__dirname, "mockedNavigator"),
"react-dnd": path.resolve(__dirname, "__mocks__", "react-dnd"),
"@emotion/react/jsx-runtime": path.resolve(
__dirname,
"__mocks__",
"@emotion",
"react",
"jsx-runtime",
),
react: path.resolve(__dirname, "__mocks__", "react"),
"react-dom": false,
"react-intl": false,
// Mocks exact imports from "antd", such as `import { Button } from "antd"`.
// This is required because of the "@activeviam/activeui-sdk-5.1" dependency.
antd$: path.resolve(__dirname, "__mocks__", "antd"),
// Mocks import from "antd" submodules, such as `import Button from "antd/lib/button"`.
// This is required because of the "@activeviam/activeui-sdk-5.0" dependency.
antd: false,
"@ant-design/icons": false,
"clipboard-polyfill": false,
},
},
mode: "none",
plugins: [
new webpack.ProvidePlugin({
window: "mocked-window",
navigator: "mocked-navigator",
}),
],
// Ignore warnings due to yarg's dynamic module loading as there is no fix for this.
// See: https://github.com/yargs/yargs/issues/781.
ignoreWarnings: [{ module: /node_modules\/yargs|require-main-filename/ }],
};