-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.ts
More file actions
62 lines (58 loc) · 1.67 KB
/
Copy pathwebpack.config.ts
File metadata and controls
62 lines (58 loc) · 1.67 KB
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
import path from 'path';
import webpack from 'webpack';
import CopyWebpackPlugin from 'copy-webpack-plugin';
// @ts-expect-error
import ZipWebpackPlugin from 'zip-webpack-plugin';
import info from './info.json';
const config: webpack.Configuration = {
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
entry: './index.ts',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'build'),
module: true,
library: {
type: 'commonjs2',
export: 'default'
}
},
experiments: {
outputModule: true
},
externals: {
'clipcc-extension': 'ClipCCExtension'
},
externalsType: 'global',
module: {
rules: [{
test: /\.tsx?$/,
loader: 'ts-loader'
}]
},
resolve: {
extensions: ['.ts', '.js'],
alias: {
'clipcc-extension$': path.resolve(__dirname, 'node_modules/clipcc-extension/dist/web/development.js'),
},
},
plugins: [
new CopyWebpackPlugin({
patterns: [{
from: path.join(__dirname, 'locales'),
to: path.join(__dirname, 'build/locales')
}, {
from: path.join(__dirname, 'assets'),
to: path.join(__dirname, 'build/assets')
}, {
from: path.join(__dirname, 'info.json'),
to: path.join(__dirname, 'build/info.json')
}]
}),
new ZipWebpackPlugin({
path: path.join(__dirname, 'dist'),
filename: `${info.id}@${info.version}`,
extension: 'ccx'
})
]
};
export default config;