-
Notifications
You must be signed in to change notification settings - Fork 53
/
webpack.config.js
88 lines (82 loc) · 1.84 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
import path from "path";
import { fileURLToPath } from "url";
import ESLintPlugin from "eslint-webpack-plugin";
import TerserPlugin from "terser-webpack-plugin";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const TSLoader = {
test: /\.ts$/i,
exclude: /node_modules/,
use: {
loader: "ts-loader",
},
};
const commonConfig = {
mode: "production",
devtool: "source-map",
entry: {
aicc: "./src/AICC.ts",
scorm12: "./src/Scorm12API.ts",
scorm2004: "./src/Scorm2004API.ts",
"scorm-again": "./src/ScormAgain.ts",
"aicc.min": "./src/AICC.ts",
"scorm12.min": "./src/Scorm12API.ts",
"scorm2004.min": "./src/Scorm2004API.ts",
"scorm-again.min": "./src/ScormAgain.ts",
},
target: ["web", "es5"],
module: {
rules: [TSLoader],
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
parallel: true,
include: /\.min\.js$/,
terserOptions: {
output: {
comments: false,
},
},
}),
],
},
resolve: {
extensions: [".ts", ".js"],
},
plugins: [
new ESLintPlugin({
overrideConfigFile: path.resolve(__dirname, "eslint.config.js"),
configType: "flat",
context: path.resolve(__dirname, "../src"),
files: ["**/*.js", "**/*.ts"],
}),
],
};
const cjsConfig = {
...commonConfig,
output: {
path: path.resolve(__dirname, "dist"),
filename: "[name].js",
libraryTarget: "this",
environment: {
arrowFunction: false,
},
},
};
const esmConfig = {
...commonConfig,
experiments: {
outputModule: true,
},
output: {
path: path.resolve(__dirname, "dist/esm"),
filename: "[name].js",
libraryTarget: "module",
environment: {
arrowFunction: false,
},
},
};
export default [cjsConfig, esmConfig];