-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
94 lines (93 loc) · 2.18 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
91
92
93
94
// const webpack = require('webpack');
//
// const {removeEmpty} = require('webpack-config-utils');
// const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
// const {resolve, join} = require('path');
//
// const config = (env, argv) => {
// const mode = argv.mode;
// const isProd = mode === 'production';
// const ifProd = (whenProd, whenNot) => (isProd ? whenProd : whenNot);
// return [{
// entry: [join(__dirname, 'src/index.ts')],
// // entry: {
// // [`index${ifProd('.min', '')}`]: [join(__dirname, '/src/index.ts')],
// // },
// output: {
// path: resolve(__dirname, 'dist', 'umd'),
// libraryTarget: 'umd',
// library: 'Wormhole',
// umdNamedDefine: true
// },
// resolve: {
// extensions: ['.ts'],
// },
// optimization: {
// splitChunks: {
// chunks: 'all'
// }
// },
// devtool: 'source-map',
// plugins: removeEmpty([
// new webpack.optimize.ModuleConcatenationPlugin(),
// ifProd(
// new UglifyJsPlugin({
// sourceMap: true,
// uglifyOptions: {
// compress: true,
// output: {
// comments: false
// }
// }
// })
// ),
// new webpack.DefinePlugin({
// 'process.env': {
// NODE_ENV: mode
// },
// }),
// ]),
// module: {
// rules: [
// {
// test: /\.ts?$/,
// include: /src/,
// loader: 'awesome-typescript-loader',
// }
// ],
// },
// }];
// };
//
// module.exports = config;
//
const path = require('path');
const TSLintPlugin = require('tslint-webpack-plugin');
module.exports = {
entry: './src/index.ts',
module: {
rules: [
{
test: /\.ts?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.ts', '.js'],
},
plugins: [
new TSLintPlugin({
files: ['./src/**/*.ts']
})
],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'build', 'umd'),
libraryTarget: 'umd',
library: 'Wormhole',
libraryExport: 'default',
umdNamedDefine: true
},
};