-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwebpack.config.ts
82 lines (79 loc) · 1.65 KB
/
webpack.config.ts
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
import * as path from 'path'
import { Configuration } from 'webpack'
const commonConfig: Partial<Configuration> = {
entry: './src/index.ts',
resolve: {
extensions: ['.js', '.ts'],
},
}
const config: Configuration[] = [
{
...commonConfig,
name: 'dev',
mode: 'development',
devtool: 'inline-source-map',
output: {
library: 'XMindEmbedViewer',
libraryTarget: 'umd',
libraryExport: 'XMindEmbedViewer',
path: path.join(__dirname, 'dist'),
filename: 'xmind-embed-viewer.js'
},
//
// https://github.com/webpack/webpack-dev-server/issues/2663
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
devServer: {
port: 9000,
static: [
path.resolve('./public')
],
compress: true,
hot: true,
https: false,
},
plugins: [
],
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
configFile : 'tsconfig.esm.json'
}
}
]
},
},
{
...commonConfig,
name: 'prod-umd',
mode: 'production',
devtool: 'source-map',
output: {
library: 'XMindEmbedViewer',
libraryTarget: 'umd',
libraryExport: 'XMindEmbedViewer',
path: path.join(__dirname, 'dist/umd'),
filename: 'xmind-embed-viewer.js'
},
plugins: [
],
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
configFile : 'tsconfig.umd.json'
}
}
]
},
optimization: {
minimize: true
}
}
]
export default config