-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
85 lines (84 loc) · 2.05 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
const path = require('path');
module.exports = [
// CommonJS build
{
mode: 'production',
entry: './src/index.js',
output: {
filename: 'autoql-vanilla-wrapper.cjs.js', // Output file for CommonJS
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'commonjs2', // Export as CommonJS
clean: true, // Clean output directory before each build
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'], // Transpile modern JS for CommonJS
},
},
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'], // Process CSS files
},
],
},
resolve: {
extensions: ['.js', '.jsx', '.json'],
fallback: {
// Ensure proper handling of missing modules
fs: false,
path: false,
os: false,
},
},
},
// ES Module build
{
mode: 'production',
entry: './src/index.js',
output: {
filename: 'autoql-vanilla-wrapper.esm.js', // Output file for ES Module
path: path.resolve(__dirname, 'dist'),
library: {
type: 'module', // Export as ES Module
},
clean: false, // Do not clean to preserve CommonJS output
},
experiments: {
outputModule: true, // Enable ES Module output
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'], // Transpile modern JS for ESM
},
},
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'], // Process CSS files
},
],
},
resolve: {
extensions: ['.js', '.jsx', '.json'],
fallback: {
// Ensure proper handling of missing modules
fs: false,
path: false,
os: false,
},
},
},
];